/* Custom About Page Styles */

:root {
    --about-bg: #F2EFED;
    --about-text-dark: #4A3E3E;
    --about-text-muted: #7A6F6F;
    --about-accent: #8D6E63;
}

body {
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed navbar */
}

/* Base Styles */
.about-section {
    padding: 100px 0;
}

.about-header-text {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--about-text-dark);
}

.about-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 10vw, 8rem);
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 0.8;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

/* Hero Section */
.hero-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1574360522049-96944e216fbb?auto=format&fit=crop&q=80&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    margin-top: -80px;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-top-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.hero-center-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}


/* Content Sections */
.section-number {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--about-text-dark);
    margin-bottom: 20px;
}

.content-block {
    max-width: 450px;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--about-text-muted);
    margin-bottom: 20px;
}

/* Image Overlays / Layouts */
.vases-img-container {
    position: relative;
    width: 100%;
}

.vases-img-container img {
    width: 100%;
    border-radius: 4px;
}

.bottom-images-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-hands-wheel {
    width: 100%;
    max-width: 450px; /* Slightly larger */
    border-radius: 4px;
}

.img-holding-cups {
    width: 100%;
    max-width: 300px;
    margin-top: -180px; /* Stronger overlap */
    margin-left: 120px;
    border-radius: 300px 300px 0 0; /* More pronounced arch */
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 15px solid #fff; /* Border to separate from image behind */
}

.img-holding-cups img {
    width: 100%;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-main-title {
        font-size: 15vw;
        margin-top: 20px;
    }
    
    .hero-circle-mask {
        width: 300px;
    }
    
    .img-holding-cups {
        margin-top: 20px;
        margin-left: 0;
    }
    
    .about-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 10px;
    }
    
    .about-header-text {
        font-size: 0.7rem;
    }
}
