/* Grand Ivy - Modern Entertainment Platform Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ECFAE5;
}

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

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #DDF6D2;
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb li {
    color: #000000;
}

.breadcrumb li:not(:last-child)::after {
    content: ' / ';
    margin: 0 8px;
    color: #000000;
    opacity: 0.6;
}

/* Header Styles */
.header {
    background: #DB9C00;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #FFFFFF;
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.logo-link h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #ECFAE5;
    background-color: rgba(236, 250, 229, 0.1);
}

.btn-login,
.btn-register {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.btn-login {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.btn-login:hover {
    background: #FFFFFF;
    color: #DB9C00;
}

.btn-register {
    background: #ECFAE5;
    color: #DB9C00;
    border: 1px solid #ECFAE5;
}

.btn-register:hover {
    background: #CAE8B0;
    color: #000000;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #DB9C00;
    color: #FFFFFF;
    border-color: #DB9C00;
}

.btn-primary:hover {
    background: #CAE8B0;
    color: #000000;
    border-color: #CAE8B0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(219, 156, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #DB9C00;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #CAE8B0 0%, #DDF6D2 100%);
    color: #000000;
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23DB9C00" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23DB9C00" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23DB9C00" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23DB9C00" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23DB9C00" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #000000;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #000000;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

/* Decorative elements */
.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 30px;
    opacity: 0.1;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 25px;
    opacity: 0.3;
    z-index: 1;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.about-section {
    background: #ECFAE5;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.8;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    background: #DDF6D2;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ECFAE5;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #CAE8B0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #000000;
    line-height: 1.6;
    opacity: 0.8;
}

/* Register Section */
.register-section {
    background: #ECFAE5;
    padding: 4rem 0;
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.register-content h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.register-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #000000;
    line-height: 1.8;
    opacity: 0.8;
}

.register-content h3 {
    font-size: 1.8rem;
    color: #000000;
    margin: 2rem 0 1.5rem 0;
    font-weight: bold;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-box {
    background: #CAE8B0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.step-icon {
    background: #DB9C00;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.step-content p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.register-note {
    font-size: 1rem;
    color: #000000;
    margin-top: 1rem;
    opacity: 0.8;
}

.register-note a {
    color: #DB9C00;
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover {
    text-decoration: underline;
}

.hero-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Login Section */
.login-section {
    background: #DDF6D2;
    padding: 4rem 0;
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.login-content h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.login-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #000000;
    line-height: 1.8;
    opacity: 0.8;
}

.login-content h3 {
    font-size: 1.8rem;
    color: #000000;
    margin: 2rem 0 1.5rem 0;
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.benefits-list li {
    background: #ECFAE5;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    color: #000000;
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: #DB9C00;
    font-weight: bold;
    font-size: 1.1rem;
}

.login-note {
    font-size: 1rem;
    color: #000000;
    margin-top: 1rem;
    opacity: 0.8;
}

.login-note a {
    color: #DB9C00;
    text-decoration: none;
    font-weight: 600;
}

.login-note a:hover {
    text-decoration: underline;
}

.hero-image-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-login img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image-login img:hover {
    transform: scale(1.02);
}

/* Registration Section */
.registration-section {
    background: #ECFAE5;
}

.registration-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.registration-section h3 {
    font-size: 1.8rem;
    color: #DB9C00;
    margin: 2rem 0 1rem 0;
}

.registration-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.8;
    opacity: 0.8;
}

/* Advantages Section */
.advantages-section {
    background: #DDF6D2;
}

.advantages-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.advantages-section h3 {
    font-size: 1.8rem;
    color: #DB9C00;
    margin: 2rem 0 1rem 0;
}

.advantages-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.8;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    background: #ECFAE5;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #DDF6D2;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    background: #DB9C00;
    color: #FFFFFF;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background: #CAE8B0;
    color: #000000;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #000000;
    line-height: 1.6;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: #DB9C00;
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #DB9C00;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ECFAE5;
}

.footer-brand p {
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    color: #ECFAE5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.link-group a:hover {
    color: #ECFAE5;
    opacity: 1;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #ECFAE5;
    padding-top: 1rem;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #DB9C00;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
        width: 100%;
    }
    
    .btn-login,
    .btn-register {
        margin: 0.5rem 0;
        display: inline-block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    /* Register and Login sections responsive */
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .hero-image-login img {
        max-width: 250px;
    }
    
    .step-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Additional responsive styles for register/login sections */
    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }
    
    .register-content h3,
    .login-content h3 {
        font-size: 1.5rem;
    }
    
    .step-box {
        padding: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .hero-image img,
    .hero-image-login img {
        max-width: 200px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #ECFAE5;
    outline-offset: 2px;
}

/* Page-specific styles */
.page-hero {
    background: #DB9C00;
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* About page styles */
.about-content {
    background: #ECFAE5;
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-text h2 {
    font-size: 2rem;
    color: #000000;
    margin: 2rem 0 1rem 0;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.8;
    opacity: 0.8;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.values-section {
    background: #DDF6D2;
    padding: 4rem 0;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #ECFAE5;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #DB9C00;
    margin-bottom: 1rem;
}

.value-card p {
    color: #000000;
    line-height: 1.6;
    opacity: 0.8;
}

/* Privacy, Terms, Disclaimer page styles */
.privacy-content,
.terms-content,
.disclaimer-content {
    background: #ECFAE5;
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    color: #000000;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 2px solid #DB9C00;
}

.content-wrapper h3 {
    font-size: 1.4rem;
    color: #DB9C00;
    margin: 1.5rem 0 0.5rem 0;
}

.content-wrapper p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.7;
    opacity: 0.8;
}

.content-wrapper ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: #000000;
    line-height: 1.6;
    opacity: 0.8;
}

.content-wrapper a {
    color: #DB9C00;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Support page styles */
.support-content {
    background: #ECFAE5;
    padding: 4rem 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.support-intro h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.support-intro p {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-method {
    background: #DDF6D2;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-method h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.support-method p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info {
    background: #DDF6D2;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #DB9C00;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #000000;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* 404 Error page styles */
.error-page {
    background: #ECFAE5;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.error-image {
    text-align: center;
}

.error-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.error-text h1 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.3rem;
    color: #DB9C00;
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.8;
}

.error-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.helpful-links {
    background: #DDF6D2;
    padding: 1.5rem;
    border-radius: 8px;
}

.helpful-links h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 1rem;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: #DB9C00;
    text-decoration: none;
    font-weight: 500;
}

.helpful-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for additional pages */
@media (max-width: 1024px) {
    /* Tablet and smaller screens - show mobile menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #DB9C00;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        margin-bottom: 1rem;
    }
    
    .nav-menu .nav-link {
        color: #FFFFFF;
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .nav-menu .btn {
        margin: 0.5rem 0;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1002;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #FFFFFF;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .error-text h1 {
        font-size: 2rem;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Hero section mobile adjustments */
    .hero {
        padding: 4rem 0;
        min-height: 80vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-img {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    
    /* Mobile menu adjustments for smaller screens */
    .nav-menu {
        width: 280px;
        padding-top: 70px;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .nav-menu .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000000;
        color: #FFFFFF;
        border-color: #000000;
    }
    
    .btn-outline {
        background: #FFFFFF;
        color: #000000;
        border-color: #000000;
    }
}
