* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-charcoal: #1a1a1a;
    --champagne-gold: #d4af37;
    --ivory-white: #f5f5f0;
    --soft-bronze: #cd7f32;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-charcoal);
    color: var(--ivory-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--champagne-gold);
}

header {
    background-color: var(--deep-charcoal);
    padding: 1rem 2rem;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--champagne-gold);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--champagne-gold);
    text-decoration: none;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--ivory-white);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--champagne-gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--champagne-gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--champagne-gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

section {
    margin: 2rem 0;
}

section.hero {
    margin-top: 0;
}

.hero {
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--ivory-white);
}

.hero-image {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 2px solid var(--champagne-gold);
    color: var(--champagne-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--champagne-gold);
    color: var(--deep-charcoal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.showcase-card {
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.showcase-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.showcase-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--deep-charcoal);
    border: 2px solid var(--champagne-gold);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.privacy-popup.show {
    display: block;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-accept, .btn-decline {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--champagne-gold);
    color: var(--deep-charcoal);
}

.btn-accept:hover {
    background-color: var(--soft-bronze);
}

.btn-decline {
    background-color: transparent;
    color: var(--ivory-white);
    border: 1px solid var(--ivory-white);
}

.btn-decline:hover {
    background-color: var(--ivory-white);
    color: var(--deep-charcoal);
}

form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--champagne-gold);
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--champagne-gold);
    color: var(--ivory-white);
    font-family: 'Montserrat', sans-serif;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--soft-bronze);
    background-color: rgba(212, 175, 55, 0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

footer {
    background-color: #0f0f0f;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--champagne-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    color: var(--ivory-white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: var(--champagne-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--champagne-gold);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.success-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.success-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--champagne-gold);
}

.legal-page p,
.legal-page ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }

    .logo {
        font-size: 1rem;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--deep-charcoal);
        border-top: 1px solid var(--champagne-gold);
        transition: left 0.3s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-image {
        height: 300px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .privacy-popup {
        padding: 1.5rem;
    }

    .privacy-popup-buttons {
        flex-direction: column;
    }
}

