.about-hero {
    min-height: 420px;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("images/about.JPG");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 12px solid var(--claddagh-cream);
}

.about-hero-content h1 {
    color: var(--claddagh-cream);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0;
    text-transform: uppercase;
}

.about-hero-content p {
    color: var(--claddagh-cream);
    font-size: 1.4rem;
    margin-top: 15px;
}

.claddagh-story-section {
    background: var(--claddagh-cream);
    padding: 90px 20px;
}

.story-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-heading);
    color: var(--claddagh-green);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
}

.story-text p {
    color: var(--claddagh-green);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 22px;
}

.story-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.gallery-section {
    background: var(--claddagh-green);
    padding: 80px 20px;
    text-align: center;
}

.gallery-section h2 {
    color: var(--claddagh-cream);
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 40px;
}

.gallery-slider {
    max-width: 850px;
    margin: auto;
    position: relative;
}

.gallery-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: .3s;
}

.gallery-btn:hover {
    background: var(--claddagh-gold);
    color: var(--claddagh-green);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@media (max-width:768px){

    .gallery-slider img{
        height:320px;
    }

    .gallery-btn{
        width:45px;
        height:45px;
        font-size:1.5rem;
    }

}

@media (max-width: 900px) {

    .about-hero {
        min-height: 320px;
    }

    .claddagh-story-section {
        padding: 70px 20px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text {
        order: 1;
        text-align: center;
    }

    .story-image {
        order: 2;
    }

    .story-image img {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .story-text p {
        font-size: 1.05rem;
    }

    .gallery-slider img {
        height: 320px;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

}