/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Smooth scroll handled by JS for speed control */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fdf5e6; /* Warm OldLace */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fdf5e6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    max-height: 90px;
    display: block;
}

.menu-toggle, .menu-close {
    display: none;
}

.menu-toggle {
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

nav ul.nav-menu {
    display: flex;
    list-style: none;
}

nav ul.nav-menu li {
    margin-left: 30px;
}

nav ul.nav-menu li a {
    text-decoration: none;
    color: #000;
    text-transform: lowercase;
    font-weight: 700;
    transition: color 0.3s;
}

nav ul.nav-menu li a:hover {
    color: #d2691e;
}

/* Banner / Video */
.banner {
    padding: 0;
    background-color: #ffe4b5; /* Moccasin - Warm */
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fdf5e6;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-text strong {
    font-weight: 700;
}

.brand-name {
    font-size: 1.4rem;
}

.signature {
    margin-top: 40px;
    font-style: italic;
}

.more-info {
    margin-top: 30px;
    font-weight: 700;
    text-transform: lowercase;
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background-color: #ffdead; /* NavajoWhite - Warm */
}

/* Videos */
.videos {
    padding: 80px 0;
    background-color: #fdf5e6;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-item video {
    width: 100%;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-transform: lowercase;
}

.section-subtitle {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    text-transform: lowercase;
    font-style: italic;
    color: #444;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    background-color: #eee; /* Placeholder color */
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact {
    padding: 80px 0;
    background-color: #fdf5e6;
}

#contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    background-color: #fff;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #333;
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: #fdf5e6;
    border-top: 1px solid #ddd;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
}

.footer-col p {
    font-size: 0.9rem;
}

.footer-col a {
    color: #d2691e;
    text-decoration: none;
    font-weight: 700;
}

.branding-col {
    display: flex;
    justify-content: center;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.branding-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.footer-branding img {
    max-height: 35px;
    width: auto;
}

.footer-branding span {
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    line-height: 1.1;
    display: inline-block;
}

.links-col {
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    text-transform: lowercase;
}

.footer-links a {
    color: #000;
    font-weight: 400;
    font-size: 0.9rem;
    white-space: nowrap;
}

.copyright-col {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.footer-links a {
    color: #000;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border: 5px solid #fff;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.cookie-banner p {
    display: inline-block;
    margin-right: 20px;
}

.cookie-banner a {
    color: #ffdead;
    text-decoration: underline;
}

.btn-cookie {
    background-color: #d2691e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

/* Legal Pages */
.legal-page {
    background-color: #fdf5e6;
}

.legal-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-col {
        text-align: center;
        flex: 1 1 100%;
    }
    .branding-col, .links-col, .copyright-col {
        justify-content: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-branding {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 2.5rem;
        cursor: pointer;
        color: #000;
        line-height: 1;
        font-weight: 400;
    }
    
    nav ul.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fdf5e6;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
        margin-top: 0;
    }

    nav ul.nav-menu.active {
        right: 0;
    }
    
    nav ul.nav-menu li {
        margin: 20px 0;
    }

    body.menu-open {
        overflow: hidden;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 70px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-submit {
        padding: 12px;
    }
    
    nav ul li {
        margin: 5px 10px;
        font-size: 0.9rem;
    }
}
