:root {
    --primary-color: #0a0a0a;
    --secondary-color: #ffffff;
    --accent-color: #d4af37;
    --text-color: #e0e0e0;
    --dark-text: #1a1a1a;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: normal;
}

.nav-social-links a {
    color: var(--secondary-color);
    margin-left: 25px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-social-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, #000000, #1a1a2e);
}

.hero-content {
    z-index: 2;
    animation: fadeIn 2s ease-in-out;
    padding: 0 20px;
}

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 7rem;
        font-weight: 900;
        margin-bottom: 30px;
        text-shadow: 0 0 30px rgba(0,0,0,0.5);
    }

    .hero h1 span {
        color: var(--accent-color);
    }

    .hero p {
        font-size: 1.8rem;
        font-weight: 300;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        padding: 18px 45px;
        background-color: var(--accent-color);
        color: var(--dark-text);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 500;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s;
    }
.cta-button:hover {
    background-color: #b89b30;
    transform: scale(1.05);
}

/* Section Styling */
section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: var(--secondary-color);
}

.section-title span {
    color: var(--accent-color);
}

/* Teaser Section */
#teaser {
    background-color: #111;
}

#teaser-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.teaser-card {
    background: var(--primary-color);
    padding: 40px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 10px;
    transition: transform 0.3s, border-color 0.3s;
    z-index: 1;
}

.teaser-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.teaser-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.teaser-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.teaser-card p {
    font-weight: 300;
    line-height: 1.6;
    color: #aaa;
}

/* Notify Section */
#notify {
    background-color: var(--primary-color);
    text-align: center;
}

#notify-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#notify .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#notify p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 40px;
}

.notify-form {
    display: flex;
    max-width: 600px;
    width: 100%;
}

.notify-form input {
    flex: 1;
    min-width: 0;
    padding: 18px 25px;
    border: 1px solid #444;
    border-radius: 50px 0 0 50px;
    background: #1a1a1a;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
}

.notify-form input:focus {
    border-color: var(--accent-color);
}

    .notify-form button {
        padding: 18px 45px;
        border: 1px solid var(--accent-color);
        border-left: none;
        border-radius: 0 50px 50px 0;
        background-color: var(--accent-color);
        color: var(--dark-text);
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.3s;
    }
.notify-form button:hover {
    background-color: #b89b30;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 60px 0 20px; /* Adjusted padding */
    z-index: 2;
    position: relative;
    border-top: 1px solid #222; /* Subtle border */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left; /* Align text left within columns */
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p, .footer-section ul, .footer-section a {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section .logo {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: left;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-section .social-links a {
    font-size: 1.3rem;
    color: #aaa;
}

.footer-section .social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #888;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section .logo {
        text-align: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-section:last-child {
        margin-bottom: 0;
    }
}

/* 404 Page Specific */
.error-page-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.error-page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.error-page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 20px 0;
}

.error-page-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 500px;
}

.home-button {
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--dark-text);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.home-button:hover {
    background-color: #b89b30;
    transform: scale(1.05);
}

#error-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


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

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 20px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .nav-social-links a {
        margin-left: 15px;
        font-size: 1rem;
    }

    .hero-content {
        padding-top: 100px; /* More padding to clear header */
        padding-bottom: 30px; /* Space before button */
    }

    .hero h1 {
        font-size: 4rem; /* Larger text */
        margin-bottom: 25px; /* More spacing */
    }

    .hero p {
        font-size: 1.4rem; /* Larger paragraph */
        margin-bottom: 45px; /* More spacing */
    }

    section {
        padding: 40px 0; /* Increased padding for sections */
    }

    .section-title {
        font-size: 2.5rem; /* Increased title size */
        margin-bottom: 40px; /* More spacing */
    }

    .teaser-card h3 {
        font-size: 1.6rem; /* Slightly larger */
    }

    .teaser-card p {
        font-size: 1rem; /* Slightly larger */
        line-height: 1.5;
    }

    #notify p {
        font-size: 1.1rem; /* Larger paragraph */
        margin-bottom: 30px; /* More spacing */
    }

    .notify-form {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .notify-form input,
    .notify-form button {
        border-radius: 50px;
        border-left: 1px solid #444;
    }

    .notify-form input:focus {
         border-color: var(--accent-color);
    }

    .notify-form button {
        border-radius: 50px;
        border-left: 1px solid #444;
        max-width: 250px; /* Increased width */
        margin: 0 auto; /* Center it */
        padding: 15px 30px;
        font-size: 1.1rem; /* Increased font size */
    }

    /* 404 Responsive */
    .error-page-content h1 {
        font-size: 6rem;
    }
    .error-page-content h2 {
        font-size: 1.8rem;
    }
    .error-page-content p {
        font-size: 1rem;
    }
}
