@import url('https://fonts.googleapis.com/css2?family=Georgia:wght@400;700&family=Oswald:wght@400;600;700&display=swap');

:root {
  --pub-brown: #5C4033;
  --soft-mustard: #D4A017;
  --pale-cream: #FDF8F0;
  --muted-green: #6B8E23;
  --dark-brown: #3E2723;
  --light-brown: #8B6F47;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  font-size: 1.16rem;
  line-height: 1.9;
  color: var(--dark-brown);
  background-color: var(--pale-cream);
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.375rem;
  font-weight: 700;
  letter-spacing: -1.1px;
  color: var(--pub-brown);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.2;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--pub-brown);
  margin: 1.25rem 0 0.75rem 0;
  line-height: 1.2;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--pub-brown);
  margin: 1rem 0 0.5rem 0;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

a {
  color: var(--pub-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--soft-mustard);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--pub-brown);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 1rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pale-cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo a {
  color: var(--pale-cream);
}

.logo a:hover {
  color: var(--soft-mustard);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--pale-cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--muted-green);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 5vw;
}

.container-narrow {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 5vw;
}

section {
  padding: 110px 0;
}

.hero {
  background-color: var(--pub-brown);
  color: var(--pale-cream);
  padding: 150px 5vw;
  text-align: center;
}

.hero h1 {
  color: var(--pale-cream);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 2rem auto 0;
  display: block;
  border-radius: 8px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.content-image {
  width: 80%;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 8px;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, var(--pale-cream), var(--soft-mustard), var(--pale-cream));
  margin: 3rem 0;
  opacity: 0.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border: 1px solid var(--soft-mustard);
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem 0;
}

th {
  background-color: var(--pub-brown);
  color: var(--pale-cream);
  padding: 1.2rem;
  text-align: left;
  font-weight: bold;
}

td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #f0f0f0;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: rgba(212, 160, 23, 0.1);
}

.highlight {
  color: var(--soft-mustard);
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: white;
  border: 2px solid var(--pub-brown);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  background-color: var(--soft-mustard);
  transform: scale(1.015);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-top: 0;
}

.card a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--muted-green);
  color: var(--muted-green);
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.card a:hover {
  background-color: var(--muted-green);
  color: white;
}

.button {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid var(--muted-green);
  color: var(--muted-green);
  background-color: transparent;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button:hover {
  background-color: var(--muted-green);
  color: white;
  animation: ripple 0.6s ease;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--muted-green);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(107, 142, 35, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(107, 142, 35, 0);
  }
}

form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--soft-mustard);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--pub-brown);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--soft-mustard);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--pub-brown);
  box-shadow: 0 0 0 3px rgba(92, 64, 51, 0.1);
}

.submit-button {
  background-color: var(--pub-brown);
  color: var(--pale-cream);
  border: 2px solid var(--pub-brown);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background-color: var(--soft-mustard);
  border-color: var(--soft-mustard);
}

footer {
  background-color: var(--pub-brown);
  color: var(--pale-cream);
  padding: 3rem 5vw;
  margin-top: 110px;
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--soft-mustard);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--pale-cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--soft-mustard);
}

.footer-bottom {
  border-top: 1px solid var(--soft-mustard);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--pub-brown);
  color: var(--pale-cream);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
  max-width: 100%;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--pale-cream);
  background-color: transparent;
  color: var(--pale-cream);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--soft-mustard);
  border-color: var(--soft-mustard);
  color: var(--pub-brown);
}

.cookie-banner.hidden {
  display: none;
}

.faq-item {
  background-color: white;
  border-left: 4px solid var(--soft-mustard);
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 4px;
}

.faq-question {
  font-weight: bold;
  color: var(--pub-brown);
  margin-bottom: 0.75rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero {
    padding: 100px 5vw;
  }

  .hero h1 {
    font-size: 2rem;
  }

  section {
    padding: 80px 0;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  footer {
    padding: 2rem 5vw;
  }

  table {
    font-size: 0.9rem;
  }

  td, th {
    padding: 0.75rem;
  }
}

.disclaimer {
  background-color: rgba(212, 160, 23, 0.1);
  border: 2px solid var(--soft-mustard);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
}

.disclaimer strong {
  color: var(--pub-brown);
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}
