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

body {
    background-color: #F8F8F8;
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    overflow-x: hidden;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0 80px 0;
}

.header-left, .header-right {
    position: relative;
    width: 250px;
    height: 200px;
}

.wavy-top-left {
    position: absolute;
    top: 0;
    left: 0;
}

.circle-text-left {
    position: absolute;
    top: 60px;
    left: 30px;
    animation: spin 20s linear infinite;
}

.circle-text-right {
    position: absolute;
    top: -20px;
    right: 20px;
    animation: spin 20s linear infinite;
}

.wavy-bottom-right {
    position: absolute;
    bottom: -20px;
    right: 0;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.header-center {
    text-align: center;
    flex: 1;
}

.header-center h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.15;
    margin-bottom: 24px;
}

.header-center p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #4A4A4A;
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-explore {
    background: #222;
    color: #fff;
    border: none;
    padding: 12px 34px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Gallery Styles */
.gallery {
    display: flex;
    gap: 20px;
    height: 600px;
    align-items: stretch;
    margin-top: 40px;
    padding-bottom: 60px;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-1 { width: 15%; }
.col-2 { width: 23%; }
.col-3 { width: 24%; }
.col-4 { width: 23%; }
.col-5 { 
    width: 15%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.col img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.col img:hover {
    transform: scale(1.02);
}

/* Specific Image Heights */
.img-1 { height: 40%; }

.img-2 { height: 55%; }
.img-3 { height: 41%; }

.img-4 { height: 100%; }

.img-5 { height: 45%; }
.img-6 { height: 51%; }

.img-7 { 
    height: 40%; 
    margin-bottom: 50px;
}

/* Side Text Styles */
.side-text-left, .side-text-right {
    display: flex;
    flex-direction: column;
}

.side-text-left p, .side-text-right p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #1A1A1A;
}

.side-text-left {
    margin-top: 10px;
}

.divider {
    height: 4px;
    background-color: #1A1A1A;
    width: 100%;
    margin-top: 16px;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .header h1 {
        font-size: 3rem;
    }
    
    .gallery {
        height: 450px;
    }
    
    .header-left, .header-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        height: auto;
    }
    
    .col {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .img-1, .img-2, .img-3, .img-4, .img-5, .img-6, .img-7 {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .col-5 {
        justify-content: flex-start;
    }
}
