@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #f1f1f1;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #fafafa;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

:root {
  --gold: #D9A441;
  --bg-dark: #181818;
  --bg-darker: #121212;
  --text-light: #f0f0f0;
  --text-muted: #cccccc;
}

/* General reset */
*, *::before, *::after {
    box-sizing: border-box;
}

body, p, a, span, input, button {
    font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.8;
}

/* NAVBAR */
nav {
  background: var(--bg-dark);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1000;
  padding: 1rem 2rem;
}

nav .logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  padding-left: 1.25rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--gold);
}

nav ul li a:hover {
  color: var(--gold);
}

h2 {
  color: #D9A441;
}

.event-card,
.review-card {
    border: 1px solid #3a3a3a;
    box-shadow: 0 2px 10px rgba(217, 164, 65, 0.15);
    transition: transform 0.2s ease;
    width: 300px;
    max-width: 90vw;
    background-color: var(--card-bg);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
}

.reviews-title {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
}
.event-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(217, 164, 65, 0.3);
}

.reviews {
    text-align: center;
    padding: 4rem 2rem;
}

.menu-buttons a {
  background: #2c2c2c;
  color: #fff;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.menu-buttons a:hover {
  background: #D9A441;
  color: #121212;
  border-color: #D9A441;
}

.intro-banner h1 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  border: 2px solid rgba(217, 164, 65, 0.3);
}

.stars {
  color: #D9A441;
}




nav ul li a.active {
  color: var(--gold);
}

.card-title {
  color: var(--gold);
}

.section h2 {
  color: var(--gold);
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--gold);
    }


.menu-buttons button:hover {
  border-color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--text-muted);
  border-radius: 3px;
}

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hamburger span {
        transition: all 0.4s ease;
    }


/* Mobile nav */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--bg-dark);
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 1000;
        padding: 0 2rem;
        border-top: 1px solid var(--gold);
    }

        nav ul.show {
            position: fixed;
            top: 64px; /* ~header height (tweak to 56–72px if needed) */
            left: 0;
            right: 0;
            bottom: 0;
            /* fill the screen and allow scrolling */
            max-height: none;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            /* visuals */
            background: var(--bg-dark);
            opacity: 1;
            padding: 1rem 2rem max(env(safe-area-inset-bottom), 1.25rem);
            box-shadow: 0 8px 24px rgba(0,0,0,.35);
        }
  nav ul li {
    padding: 0.5rem 0;
  }

    nav ul li a {
        display: block;
        padding: .9rem 0;
        font-size: 1.1rem;
    }

    nav ul li + li {
        border-top: 1px solid rgba(255,255,255,.06);
    }

  .hamburger {
    display: flex;
  }
}

body.no-scroll {
    height: 100dvh;
    overflow: hidden;
}


/* SECTION STYLING */
.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #1e1e1e;
  margin: 2.5rem auto;
  padding: 3rem 1rem;
  max-width: 1100px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.section:nth-child(even) {
  background: #222;
}

.section img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}

/* TEXT CONTENT */
.text {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
  text-align: center;
}

.text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* OPENING HOURS BOX */
.opening-hours {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.opening-hours p {
  margin: 0.5rem 0;
  text-align: center;
}

/* CONTACT INFO */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-item i {
  font-style: normal;
  color: var(--gold);
}

.contact-info p {
  text-align: center;
  margin: 0.5rem 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--bg-dark);
  border-top: 1px solid #2c2c2c;
}

footer strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--gold);
}

/* Fade-in animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .fade-section.visible {
        animation: fadeInUp 0.6s ease-out forwards;
    }

button,
.cta-button,
.menu-button {
    transition: all 0.3s ease;
}

    button:hover,
    .cta-button:hover,
    .menu-button:hover {
        transform: scale(1.03);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3); /* Gold glow */
    }

@media (max-width: 600px) {
    section {
        padding: 2rem 1rem;
    }

    .text h2 {
        font-size: 2rem;
    }

    .text h3 {
        font-size: 1.3rem;
    }

    .text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

svg:hover {
    filter: drop-shadow(0 0 5px gold);
    transition: filter 0.3s ease;
}

.gold-hover {
    color: #ffd700;
    transition: all 0.3s ease;
}

    .gold-hover:hover {
        color: #fff;
        text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    }

.gold-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #ffd700;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

    .gold-btn:hover {
        background-color: #ffd700;
        color: #111;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
        cursor: pointer;
    }

.shimmer-title:hover {
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

a.text-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a.text-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        left: 0;
        bottom: -3px;
        background-color: #ffd700;
        transition: width 0.3s ease;
    }

    a.text-link:hover::after {
        width: 100%;
    }

nav a {
    margin: 0 1rem;
}

.travel-option {
    text-align: center;
    margin-bottom: 2rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.map-frame {
    margin-top: 3rem;
}


    .travel-option h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .travel-option p {
        margin: 0 auto;
        max-width: 600px;
        font-size: 1.1rem;
    }

.find-us h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

#events {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    max-width: 1100px;
}

.confirmation {
    color: var(--gold);
    text-shadow: 0 0 6px var(--gold);
}


    #events h2,
    #events p,
    #events .button {
        margin-bottom: 1rem;
    }

#events {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}
