/* Base styles */
body {
    background-color: #ffffff;
}

.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

/* Navigation styles */
.nav-gradient {
    background: linear-gradient(to right, #2563eb, #22d3ee);
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-logo {
    width: 150px;
}

.nav-contact {
    display: none;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-container {
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

/* Hero section styles */
.hero-section {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(
        to right,
        rgba(219, 234, 254, 0.95),
        rgba(212, 231, 255, 0.85),
        rgba(255, 255, 255, 0.8)
    );
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-container {
    position: relative;
    background-image: url('/images/hero_image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem;
    border-radius: 1rem;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to left,
        rgba(209, 229, 255, 0.95),
        rgba(221, 251, 255, 0.85),
        rgba(255, 255, 255, 0.8)
    ); 
    border-radius: 1rem;
}

.hero-text-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #000000;
}

.hero-text {
    color: #000000;
    margin-bottom: 1.5rem;
}

.hero-cta {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-order {
    font-size: 1.125rem;
    margin-top: 1rem;
    color: #000000;
}

/* Dark mode styles */
.dark body {
    background-color: #0f172a;
}

/* Navigation dark mode */
.dark .nav-gradient {
    background: linear-gradient(
        to right,
        #1e3a8a,
        #155e75
    );
}

/* Hero section dark mode */
.dark .hero-section {
    background: linear-gradient(
        to right,
        rgba(30, 58, 138, 0.95),
        rgba(30, 58, 138, 0.85),
        rgba(30, 58, 138, 0.8)
    );
}

/* Keep the hero section text black even in dark mode */
.dark .hero-text-content h1,
.dark .hero-text-content p,
.dark .hero-order {
    color: #000000;
}

/* Dark mode text colors for specific sections */
.dark h2 {
    color: #ffffff;
}

/* Dark mode footer background */
.dark footer {
    background: linear-gradient(
        to right,
        rgba(30, 58, 138, 0.95),
        rgba(30, 58, 138, 0.85),
        rgba(30, 58, 138, 0.8)
    );
}

/* Navigation responsive styles */
@media (max-width: 1265px) {
    .nav-contact {
        display: none;
    }

    .nav-content {
        justify-content: space-between;
        gap: 1rem;
    }

    .nav-logo {
        width: 150px;
    }

    .nav-buttons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }

    .nav-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-contact {
        display: flex;
        gap: 1.5rem;
    }

    .nav-buttons {
        flex-direction: row;
    }

    .search-container {
        width: auto;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
        margin: 0.5rem;
    }

    .hero-container {
        padding: 2rem 1rem;
    }

    .hero-text-content {
        width: 100%;
        text-align: center;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .search-container {
        width: 100%;
    }

    .nav-contact {
        display: none;
    }
}

/* Keep existing nav styles */
.nav-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 1265px) {
    .nav-gradient {
        padding: 1rem 0;
    }

    .nav-content {
        gap: 1.5rem;
    }

    .nav-buttons {
        gap: 1rem;
    }
}