@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --deep-walnut: #3D2817;
    --warm-oak: #8B6F47;
    --soft-parchment: #F5F1E8;
    --charcoal-bark: #2C1810;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal-bark);
    background-color: var(--soft-parchment);
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--deep-walnut);
    margin-bottom: 1rem;
}

header {
    background-color: var(--deep-walnut);
    color: var(--soft-parchment);
    padding: 1rem 2rem;
    min-height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-parchment);
    text-decoration: none;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--soft-parchment);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--warm-oak);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--soft-parchment);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--deep-walnut);
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    nav ul li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 2rem;
    }
    
    .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);
    }
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    margin: 2rem 0;
    padding: 2rem 0;
}

.hero {
    margin-top: 0;
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(45, 40, 35, 0.6), rgba(60, 40, 23, 0.7));
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay > div {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero h1 {
    color: var(--soft-parchment);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    z-index: 3;
}

.hero p {
    color: var(--soft-parchment);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    z-index: 3;
}

@media (max-width: 768px) {
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    header {
        padding: 1rem;
    }
    
    main {
        padding: 0 1rem;
    }
    
    section {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .btn-secondary {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    
    .hero-overlay > div {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    footer {
        padding: 2rem 1rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--warm-oak);
    color: var(--soft-parchment);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background-color: var(--charcoal-bark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--soft-parchment);
    text-decoration: none;
    border: 2px solid var(--soft-parchment);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--soft-parchment);
    color: var(--deep-walnut);
}

@media (max-width: 768px) {
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        text-align: center;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page {
    padding: 2rem 1rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--deep-walnut);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--warm-oak);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

footer {
    background-color: var(--charcoal-bark);
    color: var(--soft-parchment);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--soft-parchment);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p,
.footer-column a {
    color: var(--soft-parchment);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: var(--warm-oak);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--soft-parchment);
    text-decoration: underline;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--warm-oak);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--deep-walnut);
    color: var(--soft-parchment);
    padding: 2rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.popup-content p {
    flex: 1;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
}

.popup-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.popup-accept {
    background-color: var(--warm-oak);
    color: var(--soft-parchment);
}

.popup-accept:hover {
    background-color: var(--charcoal-bark);
}

.popup-decline {
    background-color: transparent;
    color: var(--soft-parchment);
    border: 2px solid var(--soft-parchment) !important;
}

.popup-decline:hover {
    background-color: var(--soft-parchment);
    color: var(--deep-walnut);
}

@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .popup-buttons {
        width: 100%;
        justify-content: center;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.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.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .success-page h1 {
        font-size: 2rem;
    }
    
    .success-page p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-overlay {
        padding: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .popup-content {
        padding: 1rem;
    }
    
    .popup-content p {
        font-size: 0.9rem;
    }
    
    .popup-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .popup-buttons button {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .success-page {
        padding: 1.5rem;
    }
    
    .success-page h1 {
        font-size: 2rem;
    }
    
    .success-page p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.875rem;
    }
    
    .hero-overlay {
        padding: 1rem;
    }
    
    main {
        padding: 0 0.75rem;
    }
    
    section {
        margin: 1rem 0;
        padding: 1rem 0;
    }
    
    .content-section {
        padding: 1.5rem 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 0.95rem;
    }
    
    header {
        padding: 0.75rem;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.95rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    footer {
        padding: 1.5rem 0.75rem 1rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .legal-page {
        padding: 1.5rem 0.75rem;
    }
    
    .legal-page h2 {
        font-size: 1.75rem;
    }
    
    .legal-page h3 {
        font-size: 1.25rem;
    }
    
    .popup-content {
        padding: 0.75rem;
    }
    
    .popup-content p {
        font-size: 0.85rem;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-buttons button {
        width: 100%;
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
    
    .success-page {
        padding: 1rem;
    }
    
    .success-page h1 {
        font-size: 1.75rem;
    }
    
    .success-page p {
        font-size: 0.95rem;
    }
    
    .hero-overlay {
        padding: 1rem;
    }
    
    .gallery {
        gap: 1rem;
    }
}

