@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #1778f2;
    --secondary-color: #1778f2;
    --accent-color: #1778f2;
    --text-color: #333;
    --light-text: #fff;
    --dark-text: #333;
    --background-color: #fff;
    --section-padding: 80px 0;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1.08rem;
    background: var(--background-color);
}

h1, h2, h3, h4, h5, h6, .section-title, .navbar, .btn, .btn-modern, .nav-links a, .footer-info h3, .footer-links h4, .footer-social h4 {
    font-family: var(--heading-font) !important;
    letter-spacing: 0.01em;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Info Bar Styles */
.info-bar {
    background-color: #333;
    color: var(--light-text);
    padding: 10px 0;
    text-align: center;
    font-size: 0.95rem;
}

.info-bar a {
    text-decoration: none;
    transition: color 0.3s;
}

.info-bar a:hover {
    color: var(--accent-color) !important;
}

.info-bar i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* Navigation Styles */
.navbar {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

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

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: var(--heading-font) !important;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('/images/webp/lees-mobile-detailing-8.webp') no-repeat center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: none;
    animation: heroZoomBg 10s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroZoomBg {
    from { background-size: 100% 100%; }
    to { background-size: 120% 120%; }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--light-text);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: var(--light-text);
}

.hero-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-modern {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(26,35,126,0.10);
    border: none;
    outline: none;
    transition: all 0.18s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: #1778f2;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #191919;
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(23,120,242,0.18);
}

.btn-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    z-index: -1;
    background: #1778f2;
}

.btn-outline:hover {
    color: #fff !important;
    background: #1778f2;
    border: 2px solid #1778f2;
    box-shadow: 0 6px 24px rgba(23,120,242,0.25);
    transform: scale(1.04);
}

.btn-outline:hover::before {
    background: #191919;
}

.hero-features-ultramodern {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 38px;
    border-bottom: 1.5px solid rgba(255,255,255,0.13);
    padding-bottom: 32px;
}

.feature-ultramodern {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.22rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeInUp 0.7s forwards;
    transition: color 0.2s;
}

.feature-ultramodern i {
    font-size: 1.6rem;
    color: #fff;
    opacity: 0.7;
    font-weight: 400;
    margin-bottom: 2px;
    transition: color 0.2s;
}

.feature-ultramodern:hover,
.feature-ultramodern:focus {
    color: var(--accent-color);
}

.feature-ultramodern:hover i,
.feature-ultramodern:focus i {
    color: var(--accent-color);
    opacity: 1;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; animation: fadeInUp 0.7s forwards; }

@media (max-width: 900px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-features-ultramodern {
        gap: 24px;
        flex-direction: column;
        align-items: center;
        padding-bottom: 18px;
    }
    .feature-ultramodern {
        font-size: 1.08rem;
    }
}

@media (max-width: 600px) {
    .hero-buttons-modern { flex-direction: column; gap: 14px; }
    .hero-features-ultramodern { flex-direction: column; gap: 18px; }
    .feature-ultramodern i { font-size: 1.3rem; }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    min-height: 1.2em; /* Prevent CLS when fonts load */
}

/* Button Styles */
.btn, .btn-modern {
    font-family: var(--heading-font) !important;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--secondary-color);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 40px 0;
}

/* Hide the mobile menu toggle by default (desktop) */
.mobile-menu-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        margin-left: 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-padding {
        padding: 40px 0;
    }
} 