/* Carousel Dots */
.carousel-dots {
    position: absolute;
    right: 24px;
    bottom: 18px;
    display: flex;
    gap: 8px;
    z-index: 3;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 78, 60, 0.4);
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: 2px solid #fff;
}
.dot.active {
    background: #a67c52;
    transform: scale(1.2);
    border-color: #a67c52;
}
/* Logo Styles */
.site-logo {
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    object-fit: cover;
}
/* Hamburger Menu Styles */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin-left: 8px;
    margin-right: 18px;
    z-index: 20;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 28px;
    background: #5a4e3c;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 800px) {
    .nav-wrapper {
        justify-content: flex-start;
    }
    .hamburger {
        display: flex !important;
        position: static;
        margin: 0 18px 0 0;
        background: #f7f6f2;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    }
    nav#main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: #f7f6f2;
        box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
        z-index: 10;
        padding: 16px 0 8px 0;
        border-bottom: 1px solid #e6e1d5;
    }
    nav#main-nav.open {
        display: flex;
    }
    nav#main-nav a {
        margin: 8px 0;
        padding: 10px 24px;
        font-size: 1.1rem;
    }
}
/* Carousel Styles */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.carousel-container {
    width: calc(100% - 120px);
    margin: 40px 60px 40px 60px;
    position: relative;
    z-index: 1;
    left: 0;
    right: 0;
    overflow-x: hidden;
}
/* Carousel - larger height for big screens */
.carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    background: #e6e1d5;
}
.carousel-slide {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    border-radius: 24px;
    transition: opacity 0.5s;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(90, 78, 60, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    outline: none;
    transition: background 0.2s;
}
.carousel-btn:hover {
    background: #a67c52;
}
.carousel-btn.prev {
    left: 16px;
}
.carousel-btn.next {
    right: 16px;
}
/* style.css - Basic layout inspired by hafizia.com */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f3ef;
    color: #2d2d2d;
}
header {
    background: #f7f6f2;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
    padding: 20px 0;
}
nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}
nav a {
    text-decoration: none;
    color: #5a4e3c;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
nav a:hover {
    background: #e6e1d5;
    color: #a67c52;
}
.hero {
    background: linear-gradient(120deg, #e6e1d5 0%, #f7f6f2 100%);
    color: #5a4e3c;
    text-align: center;
    padding: 80px 20px 60px 20px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #7c6f57;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #5a4e3c;
}
.sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}
.section {
    background: #f7f6f2;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
    padding: 30px 20px;
    width: 320px;
    text-align: center;
    border: 1px solid #e6e1d5;
    overflow-wrap: break-word;
    word-break: break-word;
    margin-left: 0;
    margin-right: 0;
}
.section h2 {
    color: #a67c52;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
}
.section p {
    overflow-wrap: break-word;
    word-break: break-word;
}
footer {
    background: #5a4e3c;
    color: #f7f6f2;
    text-align: center;
    padding: 30px 10px 10px 10px;
    margin-top: 40px;
}
footer a {
    color: #e6e1d5;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s;
}
footer a:hover {
    color: #a67c52;
}
@media (max-width: 1200px) {
    .carousel-container {
        width: calc(100% - 32px);
        margin: 30px 16px 30px 16px;
    }
    .carousel {
        height: 320px;
        border-radius: 16px;
    }
    .carousel-slide {
        height: 320px;
        border-radius: 16px;
        object-fit: cover;
    }
}

@media (max-width: 800px) {
    .carousel-container {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .hamburger {
        margin-left: 8px !important;
    }
    .carousel {
        height: 160px;
        border-radius: 8px;
    }
    .carousel-slide {
        height: 160px;
        border-radius: 8px;
        object-fit: cover;
    }
    .sections {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .section {
        width: 98%;
        min-width: unset;
        max-width: 100vw;
        padding: 18px 8px;
    }
    .hero {
        padding: 40px 8px 30px 8px;
    }

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-left: 10px;
    }
    .carousel {
        height: 100px;
    }
    .carousel-slide {
        height: 100px;
        object-fit: cover;
    }
    .section {
        padding: 12px 4px;
        font-size: 0.98rem;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
    .hero p {
        font-size: 1rem;
    }
    form input, form textarea {
        font-size: 1rem;
    }
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}
}