:root {
    --gold: #c5a059;
    --deep-crimson: #4a0404;
    --black: #0a0a0a;
    --champagne: #f4e9d8;
    --white: #ffffff;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--champagne);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.underline-link {
    text-decoration: underline;
}

ul { list-style: none; }

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(0.1);
}

.hero-content {
    width: min(100%, 980px);
    max-width: 980px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 10px;
}

.hero-logo {
    width: min(720px, 70vw);
    margin: 0 auto -60px;
    display: block;
}

.hero-content p {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.btn:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* Quote Header */
.quote-header {
    padding: 0px 100px 60px 100px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: var(--black);
}

.quote-header h1 {
    font-size: 3rem;
}

.quote-header p {
    font-size: 1.2rem;
    color: var(--champagne);
}

/* About Section */
#about {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(to bottom, var(--black), var(--deep-crimson));
}

.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-video {
    width: 100%;
    border: 1px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    padding: 1px;
}

/* Gallery */
#gallery {
    padding: 80px 5%;
    background: var(--black);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
    filter: brightness(0.7);
}


/* Contact Section */
#contact {
    padding: 100px 10%;
    background: #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

/* Quote Section */
#quote {
    padding: 25px 100px 100px 100px;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    display: block;
}

.contact-form {
    width: 100%;
}

.form-feedback {
    display: none;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-feedback.visible {
    display: block;
}

.form-feedback.success {
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.6);
    color: var(--white);
}

.form-feedback.error {
    background: rgba(255, 77, 77, 0.14);
    border: 1px solid rgba(255, 77, 77, 0.7);
    color: var(--white);
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    font-family: inherit;
}

.contact-form fieldset {
    border: 1px solid var(--gold);
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
}

.contact-form legend {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form label {
    color: var(--champagne);
    cursor: pointer;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 10px;
}

.contact-form label input[type="checkbox"],
.contact-form label input[type="radio"] {
    margin-right: 10px;
}

.contact-form .form-group {
    display: grid;
    margin-bottom: 20px;
}

.contact-form fieldset {
    border: 1px solid var(--gold);
    padding: 15px;
    margin-bottom: 20px;
    background: transparent;
    text-align: left;
    display: grid;
}

.contact-form fieldset legend {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    grid-column: 1 / -1;
}

.contact-form fieldset label {
    display: grid !important;
    grid-template-columns: auto 1fr;
    gap: 8px;
    margin-right: 0;
    width: fit-content;
}


.contact-form .package-selection label {
    display: block;
}

.social-links {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--gold);
}

.social-links a:hover { color: var(--white); }

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--gold);
    font-size: 0.9rem;
    background: var(--black);
}

/* Responsive */
@media (max-width: 768px) {
    #about, #contact, #quote { grid-template-columns: 1fr; text-align: center; }
    .contact-form .form-group {
        flex-direction: column;
    }
    .contact-form .form-group label {
        min-width: auto;
        margin-bottom: 10px;
    }
    .quote-header {
        padding: 20px 20px 40px;
    }
    .quote-header h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
        line-height: 1.1;
    }
    .quote-header p {
        font-size: 1rem;
    }
    #quote {
        padding: 25px 20px 80px;
    }
    nav {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 15px 5%;
    }
    .logo img {
        height: 48px;
    }
    .logoform{
        height: 48px;
    }
    .nav-links {
        display: flex;
        gap: 12px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    .nav-links li {
        white-space: nowrap;
    }
    .nav-links a {
        font-size: 0.94rem;
    }
    .social-links { justify-content: center; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 23, 20, 0.98);
    border-top: 2px solid var(--gold);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--champagne);
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.accept-btn {
    background: var(--gold);
    color: var(--black);
}

.accept-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.reject-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.reject-btn:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.cookie-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 3px;
    transition: var(--transition);
    flex-shrink: 0;
}

.cookie-close:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--white);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-text p {
        max-width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
    
    .cookie-close {
        position: absolute;
        top: 15px;
        right: 15px;
    }
}
