/* Base Styles */
:root {
    --gold-primary: #d4af37;
    --gold-secondary: #f9d77e;
    --gold-highlight: #ffebc1;
    --dark-bg: #0a0a0a;
    --light-text: #f8f8f8;
    --accent-color: #8a6d3b;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    background-image: url('https://images.unsplash.com/photo-1617038220319-276d3cfab638?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: -1;
}

/* Header Styles */
header {
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid var(--gold-primary);
    padding: 1rem 0;
    position: relative;
}

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

/* Logo & Tagline */
.logo-container {
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-secondary), transparent);
}

.tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gold-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold-primary);
}

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

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--gold-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Menu Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Main Content */
main {
    flex: 1;
    width: 100%;
    overflow-x: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 180px); /* Adjust based on header and footer height */
    padding: 2rem;
    width: 100%;
}

.content {
    max-width: 900px;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/marble.png');
    opacity: 0.05;
    z-index: -1;
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 3rem;
}

.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold-secondary);
    border-radius: 8px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-secondary);
}

/* Notify Form */
.notify-container {
    margin: 3rem 0;
}

.notify-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.notify-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--gold-primary);
    background: rgba(0, 0, 0, 0.3);
    color: var(--light-text);
    border-radius: 4px 0 0 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.notify-form button {
    padding: 0.8rem 1.5rem;
    background: var(--gold-primary);
    color: var(--dark-bg);
    border: none;
    border-radius: 0 4px 4px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: var(--gold-secondary);
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

/* Footer Styles */
footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid var(--gold-primary);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Contact Info in Footer */
.contact-info {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Copyright */
.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Header Responsive */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.95);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 90;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        border-left: 1px solid var(--gold-primary);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Main Content Responsive */
    .container {
        min-height: calc(100vh - 250px);
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .countdown {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        margin: 0 5px 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .notify-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    .notify-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .notify-form button {
        border-radius: 4px;
        width: 100%;
    }
    
    /* Footer Responsive */
    .footer-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    /* Header Responsive */
    header {
        padding: 0.8rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .main-nav ul {
        gap: 0.8rem;
    }
    
    .main-nav a {
        font-size: 0.8rem;
    }
    
    /* Main Content Responsive */
    .content {
        padding: 1.2rem;
        border-radius: 6px;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    .coming-soon p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .countdown-item span:first-child {
        font-size: 1.3rem;
        width: 45px;
        height: 45px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    /* Footer Responsive */
    footer {
        padding: 1.5rem 0;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .main-nav ul {
        gap: 0.6rem;
    }
    
    .main-nav a {
        font-size: 0.75rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}