/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #000000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    border-bottom: 1px solid #000000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: #ffffff;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    /* transition: width 0.3s ease; */
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    color: #cccccc;
}

.arrow-animation {
    margin: 40px 0;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
    margin: 40px 0;
    opacity: 0.7;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #000;
    margin: 0;
    /* optional, to remove extra spacing */
}

.video-container {
    position: relative;
    width: 100vw;
    /* full viewport width */
    max-width: 100%;
    /* avoid overflow */
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    margin-left: calc(-50vw + 50%);
    /* to center full width inside page */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}


/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: #000;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #d4af37;
    border-radius: 2px;
}

.story-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-align: justify;
    color: #cccccc;
}

.highlight {
    background-color: rgba(212, 175, 55, 0.2);
    padding: 2px 5px;
    border-radius: 3px;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000 0%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    /* Ensures it wraps on smaller screens */
    gap: 20px;
    /* added gap to replace inline */
}

.cta-text {
    flex: 1;
    min-width: 250px;
}

.cta-link {
    flex: 0 0 auto;
    margin-left: 40px;
    text-align: right;
    /* Added to align right */
}

.cta-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}


.animated-text {
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 5rem;
}

.dynamic-text {
    color: #d4af37;
    display: inline-block;
    min-width: 150px;
}

.social-icons {
    margin-top: 40px;
    text-align: center;
    font-size: 24px;
    display: flex;
    justify-content: center;

}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 25px;
    margin-top: 25px;
    transition: all 0.3s ease;
    display: inline-block;

}


.social-icons a:hover {
    color: #d4af37;
    transform: translateY(-5px);
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d4af37;
}

.footer-link img {
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.footer-link:hover img {
    transform: translateX(5px);
}

/* Footer */
footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    color: white;
    border-top: 1px solid #333;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #111111;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .animated-text {
        font-size: 2rem;
    }

    .hero-section,
    .story-section,
    .cta-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .animated-text {
        font-size: 1.8rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-link {
        margin-left: 0;
        margin-top: 30px;
    }

    .footer-link {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .animated-text {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .footer-link {
        font-size: 1.1rem;
    }
}



/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: #000;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #d4af37;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.form-actions {
    text-align: center;
}

.btn-submit {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #fff;
    color: #000;
}