/* Section 1 Styles - Modified Hero */
.hero {
    min-height: 100vh;
    width: 100%;
    background-color: var(--color-ivory);
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0; /* Adjust padding for 100vh centering */
    border-bottom: 2px solid var(--color-black);
    overflow: hidden; /* Ensure content doesn't spill out */
}

.hero .container {
    width: 100%;
    max-width: 1400px; /* Slightly wider for side-by-side */
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* LHS: Content */
.hero-content {
    text-align: left;
    z-index: 20;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.hero-title {
    font-family: var(--font-willow);
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--color-black);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    font-weight: normal;
}

.hero-statement {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-black);
    margin-bottom: 3rem;
    max-width: 50ch;
    /* Left aligned implicitly */
}


.hero .cta-group {
    display: flex;
    justify-content: flex-start; /* Left align button */
    gap: 2rem;
}

/* RHS: Visuals */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 10;
    isolation: isolate;
}

/* Art Deco "Concentric Circles" Container */
#concentric-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.concentric-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid black;
    border-radius: 50%;
    opacity: 0;
    box-sizing: border-box;
}

.concentric-ring.variant-thick {
    border-width: 2px;
}

.concentric-ring.variant-thicker {
    border-width: 3px;
}

.concentric-ring.variant-dark {
    border-color: var(--color-black);
    border-width: 2px;
}

@keyframes ringReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.hero .pottery-item {
    flex: 0 1 auto;
    transition: all 0.4s ease;
    position: relative;
}

.hero .pottery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

/* Composition Layout - Copied and adapted */
.hero .pottery-2 { /* Moon Jar */
    width: 240px;
    order: 1;
    z-index: 2;
    margin-right: -60px;
    margin-bottom: 20px;
}

.hero .pottery-3 { /* Vase (Tall) */
    width: 220px;
    order: 2;
    z-index: 1;
    margin-bottom: 50px;
}


.hero .pottery-item:hover {
    transform: translateY(-10px);
    z-index: 10;
}

.hero .pottery-3:hover {
    z-index: 1;
}


@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero .cta-group {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }

    /* Adjust Circle Size for Tablet/Mobile */
    #concentric-circles {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        padding: 0 1rem;
    }

    #concentric-circles {
        width: 300px;
        height: 300px;
    }
    
    .hero-title {
        font-size: 3.5rem; /* Ensure it fits */
    }

    /* Scale down pottery to fit screen */
    .hero .pottery-2 {
        width: 33vw;
        margin-right: -8vw;
        margin-bottom: 1rem;
    }

    .hero .pottery-3 {
        width: 30vw;
        margin-bottom: 2.5rem;
    }

}
