:root {
    /* Color Palette */
    --emerald-green: #1b1918;
    --emerald-green-light: #2c2927;
    --saffron-gold: #d25e38;
    --saffron-gold-hover: #e36a43;
    --midnight-blue: #1b1918;
    --crisp-white: #e2d8b5;
    --text-muted: #9f9b93;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--crisp-white);
    background-color: var(--midnight-blue); /* Fallback */
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Cinematic Dark Overlay */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(27, 25, 24, 0.85) 0%,
        rgba(44, 41, 39, 0.7) 100%
    );
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 600px) {
    .container {
        padding: 2rem;
    }
}

/* Header */
.header {
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    animation: fadeInDown 1s ease-out forwards;
}

.logo {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: clamp(1.5rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--crisp-white);
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    word-break: break-word;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0 2rem;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0; /* for animation */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--crisp-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Notify Container */
.notify-container {
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(244, 180, 26, 0.3); /* Subtle gold glow on hover */
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 500px) {
    .notify-form {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: var(--crisp-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

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

.email-input:focus {
    border-color: var(--saffron-gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.15);
}

.notify-btn {
    padding: 1rem 1.75rem;
    border-radius: 8px;
    border: none;
    background-color: var(--saffron-gold);
    color: var(--midnight-blue);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.notify-btn:hover {
    background-color: var(--saffron-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 180, 26, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-btn svg {
    transition: transform 0.3s ease;
}

.notify-btn:hover svg {
    transform: translateX(4px);
}

.success-msg {
    margin-top: 1rem;
    color: var(--saffron-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.hidden {
    display: none;
}

/* Footer & Contact */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.contact-info {
    padding: 1.25rem 1rem;
    text-align: center;
    border-radius: 12px;
}

@media (min-width: 600px) {
    .contact-info {
        padding: 1.5rem 2.5rem;
    }
}

.contact-info p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--saffron-gold);
    margin-bottom: 0.75rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--crisp-white);
    font-weight: 300;
}

@media (min-width: 600px) {
    .contact-details {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.contact-details a {
    color: var(--crisp-white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--saffron-gold);
}

.divider {
    display: none;
    color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 600px) {
    .divider {
        display: inline;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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