* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    color: #333;
}

/* Header */
.header {
    background-color: #8B7355;
    position: relative;
    min-height: 25vh;
    max-height: 30vh;
    overflow: visible;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 15px;
    width: 100%;
}

.nav-btn {
    background-color: transparent;
    border: 2px solid #F5E6D3;
    color: #F5E6D3;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.nav-btn:hover {
    background-color: #F5E6D3;
    color: #8B7355;
    box-shadow: 0 0 10px rgba(245, 230, 211, 0.5);
}

/* Divider */
.divider {
    position: relative;
    height: auto;
    width: 100%;
    background: linear-gradient(to right, #8B7355, #D4C4B0, #8B7355);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2px 30px;
    overflow: visible;
    z-index: 20;
}

/* Main */
.main {
    background-color: #F5F0E6;
    min-height: calc(100vh - 400px);
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gallery */
.gallery {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-container {
    width: 100%;
    height: 600px;
    background-color: #E8E0D5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
}

.gallery-image.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-btn {
    position: absolute;
    background-color: rgba(139, 115, 85, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.gallery-btn:hover {
    background-color: rgba(139, 115, 85, 1);
}

.gallery-btn-prev {
    left: 10px;
}

.gallery-btn-next {
    right: 10px;
}

/* Indicators */
.gallery-indicators {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #D4C4B0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #8B7355;
}

.indicator:hover {
    background-color: #A08060;
}

/* About Section */
.about-section {
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.about-container {
    width: 100%;
    height: 600px;
    background-color: #E8E0D5;
    border-radius: 10px;
    padding: 50px 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    color: #8B7355;
    margin-bottom: 30px;
    text-align: center;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-text.highlight {
    font-weight: 600;
    color: #8B7355;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .divider {
        justify-content: center;
        height: auto;
        min-height: 50px;
        padding: 5px;
    }

    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .gallery-container {
        height: 400px;
    }

    .gallery-btn {
        font-size: 24px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 300px;
    }

    .divider {
        height: auto;
        min-height: 45px;
        padding: 3px;
    }

    .nav-list {
        gap: 8px;
    }

    .nav-btn {
        font-size: 12px;
        padding: 6px 15px;
    }

    .gallery-container {
        height: 300px;
    }

    .about-container {
        height: auto;
        padding: 30px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-text {
        font-size: 14px;
    }
}
