:root {
    --gold: #d4af37;
    --gold-dark: #aa8c2c;
    --gold-light: #f3e5ab;
    --black: #0c0c0c;
    --white: #fcfcfc;
    --grey-light: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Background Map */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    filter: brightness(0.7) contrast(1.1);
    will-change: transform;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.95) 0%, rgba(74, 13, 21, 0.7) 60%, rgba(12, 12, 12, 0.95) 100%);
    z-index: -1;
}


/* Particles Container */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 80%);
    opacity: 0.4;
    animation-name: floatParticle;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Header */
.header {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.logo-subtext {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--white);
    opacity: 0.8;
}

/* Content */
.content {
    max-width: 800px;
}

.title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-style: italic;
}

.subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--grey-light);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

/* Coming Soon Text */
.coming-soon-text {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 3.5rem;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

/* Notify Form */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.notify-form input {
    width: 65%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 30px 0 0 30px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    backdrop-filter: blur(5px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.notify-form input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

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

.notify-form button {
    width: 35%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    border-radius: 0 30px 30px 0;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-form button:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.notify-form button:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    margin-top: 5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.9rem;
    color: var(--grey-light);
}

.contact-info {
    text-align: left;
    max-width: 350px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    opacity: 0.8;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.socials a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.socials a:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--grey-light);
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* Screen Reader Only (Accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .coming-soon-text {
        font-size: 3.5rem;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .notify-form {
        flex-direction: column;
        border-radius: 30px;
        overflow: hidden;
    }

    .notify-form input,
    .notify-form button {
        width: 100%;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .notify-form input {
        border-bottom: none;
        border-radius: 30px 30px 0 0;
    }

    .notify-form button {
        border-radius: 0 0 30px 30px;
    }
}