/* Brand Variables */
:root {
    --primary-orange: #F58220;
    --dark-blue: #0A1D37;
    --glow-gold: #FFD700;
    --white: #FFFFFF;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #050505;
    color: var(--white);
    text-align: center;
}

/* Navbar Styling */
.navbar {
    background: var(--dark-blue);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--primary-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-small {
    height: 95px; /* Bigger logo as requested */
    width: auto;
    display: block;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.logo-small:hover {
    transform: scale(1.05);
}

.nav-phone {
    color: var(--primary-orange);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid var(--primary-orange);
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-phone:hover {
    background: var(--primary-orange);
    color: white;
}

/* Landing Page Hero Section */
.hero {
    /* Uses your uploaded background.jpeg with a dark overlay for text readability */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('background.jpeg') no-repeat center center;
    background-size: cover;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--white);
    text-transform: uppercase;
    margin: 10px 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* The Glowing Call to Action Button */
.cta-main {
    background: var(--primary-orange);
    color: white;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.5rem;
    display: inline-block;
    margin-top: 25px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(245, 130, 32, 0.6);
    transition: 0.3s ease-in-out;
    animation: pulse-glow 2s infinite;
}

.cta-main:hover {
    transform: scale(1.05);
    background: #ff913d;
    box-shadow: 0 0 30px rgba(245, 130, 32, 1);
}

/* Fire/Spark Glow Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(245, 130, 32, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(245, 130, 32, 0.9), 0 0 40px rgba(255, 215, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 10px rgba(245, 130, 32, 0.5);
    }
}

.badge {
    background: var(--primary-orange);
    color: white;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    font-size: 1.1rem;
}

/* Contact Page / Business Card Style */
.contact-body {
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.business-card-layout {
    background: white;
    color: var(--dark-blue);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 20px;
    border-bottom: 15px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
}

.orange-divider {
    border: none;
    height: 2px;
    background: var(--primary-orange);
    width: 60%;
    margin: 20px auto;
}

.back-link {
    margin-top: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

.back-link:hover {
    opacity: 1;
}