body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h2 {
    margin-bottom: 10px;

}

p {
    line-height: 1.6;
}

header h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

header {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px; 

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
    font-size: 1rem;
}

header * {
    min-width: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}


nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 450;
    font-size: 1rem;

    transition: 0.3s;
}

nav a:hover {
    color: goldenrod;
}

.navbar a.active {
    color: goldenrod;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

.hero {
    background: url('/Images/pubOutsideBushes.JPG') center/cover no-repeat;
    height: 100vh;
    position: relative;
}

.overlay {
    background: linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.2)
    );

    color:  white;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.open-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: grey;
}

.open-status.open {
    color: #0dd62f;
}

.open-status.closed {
    color: #d51212;
}

.hero-box {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 30px;

    text-align: center;
    color: white;

   /* backdrop-filter: blur(3px); */

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-box h2 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.hero-box p {
    margin-bottom: 20px;
}

.overlay h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.3rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.content {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.btn {
    display: inline-block;
    width: auto;
    align-self: center;
    margin-top: 20px;
    padding: 12px 25px;
    background: goldenrod;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;

    transition: 0.3s;
}

.btn:hover {
    background: #b8962e;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

html {
    scroll-behavior: smooth;
}

header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.about-container {
    max-width: 800px;
    margin: auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(0,0,0,0.75);
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    flex: 1;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.split {
    display: flex;
    align-items: center;
    min-height: 400px;
    padding: 80px 20px;
    background: #f9f9f9;
}

.split-text {
    flex: 1;
    padding: 40px;
    max-width: 550px;
}

.split-image {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    background: url(/Images/pottingShed-Outside.png) center/cover no-repeat;
}

.split:nth-of-type(2) {
    background: #f9f9f9;
}

.award-image {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 20px;
}

.award-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reviews {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;

    overflow: hidden;
}

.reviews h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.review-slider {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    max-width: 900px;
    margin: auto;
}

.review-window {
    overflow: hidden;
    width: 100%;
}

.review-track {
    display: flex;

    transition: transform 0.5s ease-in-out;
}

.review {
    min-width: 100%;
    box-sizing: border-box;

    background: white;
    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.review p {
    font-size: 1.1rem;
    line-height: 1.8;

    margin-bottom: 20px;
}

.review h4 {
    margin: 0;
    opacity: 0.7;
}

.stars {
    font-size: 1.5rem;
    color: goldenrod;

    margin-bottom: 20px;
}

.review-btn {
    background: white;
    border: none;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    font-size: 1.5rem;
    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    transition: 0.3s;

    flex-shrink: 0;
}

.review-btn:hover {
    transform: scale(1.1);
    background: goldenrod;
}

@keyframes fadeReview {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1) {transition-delay: 0.1;}
.card:nth-child(2) {transition-delay: 0.2;}
.card:nth-child(3) {transition-delay: 0.3;}

.menu-hero {
    background: url('/Images/menuPageHero.png') center/cover no-repeat;
    height: 55vh;
    position: relative;
}

.menu-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}

.menu-overlay h2 {
    margin-bottom: 10px;
    font-size: 3rem;
}

.menu-page {
    margin-top: 40px;
}


.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.menu-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;

    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    transition: 0.3s;
}


.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-card .menu-btn {
    display: inline-block;
    margin: 15px;
    padding: 10px 20px;

    background: #d4af37;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;

    transition: 0.3s;
}

.menu-card .menu-btn:hover {
    background: #b8962e;
}

.contact-hero {
    background: url('/Images/welcomePageImg.JPG') top center/cover no-repeat;
    background-size: cover;
    height: 55vh;
    position: relative;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}

.contact-overlay h2 {
    margin-bottom: 10px;
    font-size: 3rem;
}

.gallery-hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("/Images/pubOutside.jpg");
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;

    color: white;
    text-align: center;
    padding: 0 20px;
}

.gallery-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.gallery-overlay h2 {
    margin-bottom: 10px;
    font-size: 3rem;
}

.gallery-section {
    padding: 70px 40px 60px;
    margin-top: -40px;
    background: #f9f9f9;
}

.gallery-intro {
    padding: 70px 20px 40px;
    text-align: center;
    background: transparent;
    position: relative;
    background: #f9f9f9;
}

.gallery-intro-inner {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 10px;
    padding-top: 20px;
}

.gallery-intro::before {
    content: "";
    position: absolute;
    top: 25px;

    left: 50%;
    transform: translateX(-50%);

    width: 500px;
    height: 2px;

    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.gallery-intro h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.gallery-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.75);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

    transition: transform 0.3s ease;
    transition-delay: 0.1s;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.large {
    grid-column: span 2;
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);

    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.contact-info {
    flex: 1;

    background: white;
    padding: 40px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(0,0,0,0.08);

    transition: 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item h4 {
    margin: 0;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

.icon {
    font-size: 1.8rem;
}

.contact-divider {
    height: 1px;
    background: rgba(0,0,0,0.1);

    margin: 30px 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;

    padding: 10px 0;

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-map {
    flex: 1;
}

.contact-item a {
    color: #111;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s;
}

.contact-item a:hover {
    color:goldenrod;
}

.booking-note {
    margin-top: 8px !important;
    font-size: 0.9rem;
    opacity: 0.7;
}

.icon i {
    font-size: 1.8rem;
}

.events {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.events h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;

    max-width: 1200px;
    margin: auto;
}

.event-card {
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.event-time {
    color: goldenrod;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-content p {
    line-height: 1.7;
}

.events-facebook {
    margin-top: 50px;
    text-align: center;
}

.events-facebook p {
    margin-bottom: 20px;
    font-size: 1rem;
    opacity: 0.8;
}

.facebook-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #1877f2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.facebook-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.25);
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    min-height: 400px;
    border-radius: 15px;
}

.footer {
    background: #111;
    color: white;
    padding: 50px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-section a:hover {
    color: goldenrod;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.6;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer-section.footer-map {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    align-items: stretch;
}

.footer-address {
    flex: 1;
}

.footer-map-embed {
    flex: 1;
    max-width: 450px;
}

.footer-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 0;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.floating-book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    background: goldenrod;
    color: white;

    text-decoration: none;
    font-weight: 600;

    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: 0.3s;
    display: none;
}

.floating-book-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

html, body {
    overflow-x: hidden;
}


/* MOBILE */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.80);

        display: flex;
        flex-direction: column;

        text-align: center;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.4s ease;
    }

    .navbar.active {
        max-height: 300px;
    }

    .navbar a {
        padding: 18px;
        margin: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }


    .hero-box {
        padding: 25px;
        margin: 0 15px;
    }

    .hero-box h2 {
        font-size: 2rem;
    }

    .hero-box p {
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
        padding: 40px 15px;
    }

    .card {
        margin-bottom: 15px;
    }

    .btn {
        display: inline-block;
        width: auto;
        padding: 15px;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }

    .split {
        flex-direction: column;
        padding: 40px 15px;
        gap: 20px;
    }


    .split-image {
        aspect-ratio: 16/9;
        width: 100%;
        margin: 0 auto;
        border-radius: 12px;
        background-size: cover;
        background-position: center 30%;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .split-text {
        padding: 10px 5px;
        text-align: center;
    }

    .split-text h2 {
        font-size: 1.6rem;
    }

    .split-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .menu-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section.footer-map {
        flex-direction: column;
        align-items: center;
    }

    .footer-map-embed {
        max-width: 100%;
    }

    .footer-map-embed iframe {
        height: 200px;
    }

    .contact-section { 
        flex-direction: column;
    }

    .review-slider {
        flex-direction: column;
    }

    .review-btn {
        width: 45px;
        height: 45px;
    }

    .review {
        padding: 25px;
    }

    .floating-book-btn {
        display: block;
    }

    .open-status {
        display: none;
    }

    .gallery-section {
        padding: 40px 20px;
    }

    .gallery-hero h1 {
        font-size: 2.2rem;
    }

    .large, 
    .wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}