.hero-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    text-align: center;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)),
        url("images/claddagh-outside.JPG");

    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;

    border-bottom: 12px solid var(--claddagh-cream);
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 90%);
}

.hero-content h1 {
    margin: 0;
    color: var(--claddagh-cream);
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 769px) {
    .no-break {
        white-space: nowrap;
    }
}

@media screen and (max-width: 768px) {

    .hero-banner {
        min-height: 430px;
    }

    .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.15;
}

}

@media screen and (max-width: 480px) {

    .hero-banner {
        min-height: 350px;
    }

    .hero-content h1 {
    font-size: 1.8rem;
}

}

.welcome-section {
    background: var(--claddagh-cream);
    padding: 90px 20px;
    text-align: center;
}

.welcome-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.welcome-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--claddagh-green);
    margin-bottom: 30px;
}

.welcome-divider {
    width: 220px;
    height: 2px;
    background: var(--claddagh-gold);
    margin: 0 auto 40px;
}

.welcome-section p {
    max-width: 900px;
    margin: 0 auto 35px;
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--claddagh-green);
}

@media (max-width: 768px) {

    .welcome-section {
        padding: 60px 20px;
    }

    .welcome-section h2 {
        font-size: 2.3rem;
    }

    .welcome-section p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

}

.feature-section {
    background: var(--claddagh-cream);
    padding: 40px 0;
}

.feature-content {
    width: 92%;
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
}

.feature-text {
    background: var(--claddagh-green);
    color: var(--claddagh-cream);
    padding: 35px 50px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-text h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.feature-text p {
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    border: 2px solid var(--claddagh-gold);
    color: var(--claddagh-cream);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s;
}

.feature-btn:hover {
    background: var(--claddagh-gold);
    color: var(--claddagh-green);
}

.feature-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.feature-image video {
    width: 100%;
    height: 420px;
    object-fit: contain;
    display: block;
    background: var(--claddagh-green);
}

/* Food logo - desktop */
.feature-image--logo {
    background: var(--claddagh-green);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 30px;
    box-sizing: border-box;
}

.feature-image--logo img {
    width: min(100%, 600px);
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {

    .feature-content {
        grid-template-columns: 1fr;
    }

    .feature-text {
        order: 1;
        min-height: auto;
        padding: 40px 25px;
    }

    .feature-image {
        order: 2;
    }

    .feature-image img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
    }

    .feature-image video {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

    .feature-text h2 {
        font-size: 2.2rem;
    }

    .feature-text p {
        font-size: 1.05rem;
    }

    /* Food logo - mobile */
    .feature-image--logo {
        min-height: 280px;
        padding: 25px 20px;
        background: var(--claddagh-green);
    }

    .feature-image--logo img {
        width: min(95%, 520px);
        height: auto;
        max-height: 260px;
        object-fit: contain;
        display: block;
    }
}

.feature-content.reverse {
    grid-template-columns: 40% 60%;
}

.feature-content.reverse .feature-image {
    order: 1;
}

.feature-content.reverse .feature-text {
    order: 2;
}

@media (max-width: 900px) {

    .feature-content.reverse {
        grid-template-columns: 1fr;
    }

    .feature-content.reverse .feature-text {
        order: 1;
    }

    .feature-content.reverse .feature-image {
        order: 2;
    }

}

.hours-section {
    background: var(--claddagh-green);
    padding: 70px 20px;
}

.hours-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--claddagh-cream);
    padding: 60px;
    text-align: center;
}

.hours-container h2 {
    font-family: var(--font-heading);
    color: var(--claddagh-green);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hours-divider {
    width: 180px;
    height: 2px;
    background: var(--claddagh-gold);
    margin: 0 auto 45px;
}

.hours-table {
    max-width: 700px;
    margin: 0 auto;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    font-size: 1.3rem;
    color: var(--claddagh-green);
}

.dress-code {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 2px solid var(--claddagh-gold);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--claddagh-green);
}

@media (max-width: 768px) {

    .hours-container {
        padding: 40px 25px;
    }

    .hours-container h2 {
        font-size: 2.3rem;
    }

    .hours-row {
        flex-direction: column;
        gap: 8px;
    }

    .hours-row span {
        font-size: 1.1rem;
    }

    .dress-code {
        font-size: 1rem;
    }

}