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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            padding: 20px 5%;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.95);
            padding: 15px 5%;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            text-decoration: none;
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 2px;
            color: #fff;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 300;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .login-btn {
            background: transparent;
            border: 1px solid #d4af37;
            color: #d4af37;
            padding: 10px 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .login-btn:hover {
            background: #d4af37;
            color: #000;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Background Image */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        /* Gradient Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.7) 100%
            );
            z-index: 2;
        }

        /* Zoom animation */
        @keyframes heroZoom {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.1);
        }
        }

        /* Hero Text Content */
            .hero-content {
            text-align: center;
            z-index: 3;
            max-width: 800px;
            padding: 0 20px;
            position: relative;
        }

        .hero-title {
            
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 175;
            letter-spacing: 7px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1.5s ease 0.5s forwards;
            transform: translateY(30px);
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            letter-spacing: 2px;
            font-weight: 400;
            color: #d4af37;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 1.5s ease 1s forwards;
            transform: translateY(30px);
        }

        /* Fade-in animation */
        @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }




        /* CTA Section */
        .cta-section {
            padding: 100px 5%;
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .cta-btn {
            padding: 20px 40px;
            border: 2px solid #d4af37;
            color: #d4af37;
            background: transparent;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 300;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn.primary {
            background: #d4af37;
            color: #000;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        .cta-btn.primary:hover {
            background: transparent;
            color: #d4af37;
        }


        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 5% 40px;
        }

        .footer-content {
            margin-bottom: 60px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-newsletter {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-section h3 {
            color: #d4af37;
            font-size: 1.3rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 30px;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 1px;
            background: #d4af37;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-weight: 300;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #d4af37;
            transform: translateX(5px);
        }

        .contact-info p {
            color: #ccc;
            margin-bottom: 15px;
            font-weight: 300;
            line-height: 1.6;
        }

        .contact-info .highlight {
            color: #d4af37;
            font-weight: 400;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ccc;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .social-icon:hover {
            border-color: #d4af37;
            color: #d4af37;
            transform: translateY(-3px);
        }

        .newsletter {
            flex: 1;
        }

        .social-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 200px;
        }

        .social-section h4 {
            color: #d4af37;
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-align: center;
        }

        .newsletter h3 {
            margin-bottom: 15px;
        }

        .newsletter p {
            color: #ccc;
            margin-bottom: 25px;
            font-weight: 300;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            min-width: 200px;
            padding: 15px;
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #fff;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: #d4af37;
        }

        .newsletter-input::placeholder {
            color: #666;
        }

        .newsletter-btn {
            padding: 15px 30px;
            background: #d4af37;
            color: #000;
            border: none;
            cursor: pointer;
            font-weight: 400;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .newsletter-btn:hover {
            background: transparent;
            color: #d4af37;
            border: 1px solid #d4af37;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            padding: 30px 0;
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #666;
            font-weight: 300;
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .footer-legal a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #d4af37;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                padding: 60px 5% 30px;
            }

            .footer-top {
                gap: 30px;
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

            .footer-newsletter {
                flex-direction: column;
                gap: 30px;
                align-items: center;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
                max-width: 400px;
                width: 100%;
            }

            .newsletter-input {
                min-width: 100%;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
                flex-wrap: wrap;
            }
        }