@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --terracotta-earth: #C17A5F;
    --sage-leaf-green: #8FA68E;
    --soft-alabaster: #F5F3F0;
    --oxidized-bronze: #6B5B4F;
    --charcoal-slate: #2C2C2C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal-slate);
    background-color: var(--soft-alabaster);
    line-height: 1.6;
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--oxidized-bronze);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--terracotta-earth);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--oxidized-bronze);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    background-color: var(--soft-alabaster);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta-earth);
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
    }
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--charcoal-slate);
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--terracotta-earth);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal-slate);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--soft-alabaster);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .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;
    padding: 2rem 1rem;
}

@media (max-width: 768px) {
    section {
        margin: 1.5rem 0;
        padding: 1.5rem 0.75rem;
    }
}

section.hero {
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 1rem;
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0.75rem;
        min-height: 350px;
    }
}

.hero-content {
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.5rem;
    }
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.3s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.6s forwards;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

.btn-primary {
    background-color: var(--terracotta-earth);
    color: white;
}

.btn-primary:hover {
    background-color: var(--oxidized-bronze);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--terracotta-earth);
    transform: scale(1.05);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 320px) {
    .gallery {
        gap: 1rem;
    }
    
    .gallery-item-content {
        padding: 0.75rem;
    }
}

.gallery-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-content {
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-item-content {
        padding: 1rem;
    }
}

.gallery-item h3 {
    margin-bottom: 0.5rem;
    color: var(--terracotta-earth);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    form {
        padding: 1.5rem;
        margin: 1.5rem 0.75rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal-slate);
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

@media (max-width: 480px) {
    form input[type="text"],
    form input[type="email"],
    form textarea {
        font-size: 16px;
        padding: 0.875rem;
    }
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.privacy-policy-page,
.terms-page,
.return-page,
.cookies-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 480px) {
    .privacy-policy-page,
    .terms-page,
    .return-page,
    .cookies-page {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.privacy-policy-page section,
.terms-page section,
.return-page section,
.cookies-page section {
    max-width: 800px;
    margin: 2rem auto;
}

@media (max-width: 480px) {
    .privacy-policy-page section,
    .terms-page section,
    .return-page section,
    .cookies-page section {
        margin: 1.5rem auto;
    }
}

.privacy-policy-page h2,
.terms-page h2,
.return-page h2,
.cookies-page h2 {
    color: var(--terracotta-earth);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy-page h3,
.terms-page h3,
.return-page h3,
.cookies-page h3 {
    color: var(--oxidized-bronze);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal-slate);
    color: white;
    padding: 2rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

@media (max-width: 768px) {
    .privacy-popup {
        padding: 1.5rem;
    }
}

.privacy-popup.show {
    display: block;
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .privacy-popup-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .privacy-popup-content p {
        min-width: auto;
        margin-bottom: 1rem;
    }
    
    .privacy-popup-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .privacy-popup-btn {
        width: 100%;
    }
}

.privacy-popup p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-popup-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .privacy-popup-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

.privacy-popup-btn-accept {
    background-color: var(--sage-leaf-green);
    color: white;
}

.privacy-popup-btn-accept:hover {
    background-color: #7a9578;
}

.privacy-popup-btn-decline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.privacy-popup-btn-decline:hover {
    background-color: white;
    color: var(--charcoal-slate);
}

footer {
    background-color: var(--oxidized-bronze);
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem 1rem;
        margin-top: 3rem;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-column h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-column a:hover {
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-privacy-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-privacy-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-privacy-links a:hover {
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        min-height: 400px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero {
        min-height: 350px;
        padding: 1.5rem 0.5rem;
    }
    
    .header-container {
        padding: 0 0.75rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .footer-column h3 {
        font-size: 1.125rem;
    }
    
    .footer-privacy-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}

