@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --orange: #C27640;
  --orange-light: #D4915A;
  --orange-dark: #A56030;
  --black: #2E2A26;
  --charcoal: #F7F3EE;
  --dark-grey: #EDE8E1;
  --warm-grey: #8A8278;
  --cream: #FDFBF8;
  --gold: #B89B6A;
  --gold-light: #D4BA88;
  --teal: #5A8E7E;
  --teal-dark: #3D6B5C;
  --copper: #B87333;
  --white: #FFFFFF;
  --text-dark: #3A3530;
  --text-body: #5C554D;
  --border-light: rgba(0,0,0,0.08);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: var(--text-dark);
  opacity: 0; animation: loaderFade 1.5s ease forwards 0.3s;
}
.loader-text span { color: var(--orange); }
.loader-bar {
  width: 200px; height: 3px; background: var(--dark-grey);
  margin-top: 1.5rem; border-radius: 2px; overflow: hidden;
}
.loader-bar::after {
  content: ''; display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  animation: loaderProgress 1.8s ease forwards 0.5s;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderProgress { to { width: 100%; } }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 4%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(253,251,248,0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 4%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 0.3rem;
  transition: color 0.4s ease;
}
.navbar.scrolled .nav-logo { color: var(--text-dark); }
.nav-logo span { color: var(--orange); font-size: 2rem; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; position: relative;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); }
.navbar.scrolled .nav-links a.active { color: var(--orange); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--white);
  transition: width var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a::after { background: var(--orange); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: background var(--transition), transform 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.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); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.1) translate(0,0); }
  100% { transform: scale(1.2) translate(-1%,-1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,26,26,0.3) 0%,
    rgba(26,26,26,0.5) 50%,
    rgba(26,26,26,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px; padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-light);
  border: 1px solid var(--gold); padding: 0.5rem 1.5rem;
  border-radius: 30px; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease forwards 0.5s;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--white);
  opacity: 0; animation: fadeUp 1s ease forwards 0.7s;
}
.hero h1 .highlight { color: var(--orange); }
.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400; font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease forwards 0.9s;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s ease forwards 1.1s;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  color: var(--warm-grey); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  animation: bounce 2s infinite;
}
.hero-scroll .arrow {
  width: 20px; height: 20px; border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg); margin-top: 0.5rem;
}
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 0.9rem 2.2rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  border-radius: 50px; cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,101,26,0.3);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,101,26,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section { padding: 7rem 4%; position: relative; }

.section-header {
  text-align: center; max-width: 700px;
  margin: 0 auto 4rem;
}
.section-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-divider {
  width: 60px; height: 3px; margin: 1.2rem auto;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--warm-grey);
  max-width: 550px; margin: 0 auto; line-height: 1.8;
}

/* ===== CONCEPT SECTION ===== */
.concept { background: var(--cream); }
.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.concept-image {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.concept-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.concept-image:hover img { transform: scale(1.05); }
.concept-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(194,118,64,0.15); border-radius: 20px;
  pointer-events: none;
}
.concept-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem; margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.concept-text h3 span { color: var(--orange); }
.concept-text p {
  color: var(--text-body); margin-bottom: 1.2rem;
  font-size: 1.05rem; line-height: 1.9;
}

/* Features */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.feature-card {
  background: var(--white);
  padding: 2rem; border-radius: 20px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: rgba(194,118,64,0.25);
}
.feature-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
}
.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem; margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.feature-card p { color: var(--text-body); font-size: 0.9rem; }

/* ===== GALLERY SECTION ===== */
.gallery { background: var(--charcoal); }
.gallery .section-title { color: var(--text-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
  max-width: 1300px; margin: 0 auto;
}
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(46,42,38,0.5) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== EVENTS SECTION ===== */
.events { background: var(--white); }
.events-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; max-width: 800px; margin: 0 auto;
}
.event-card {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 420px; cursor: pointer;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.event-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover img { transform: scale(1.1); }
.event-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(46,42,38,0.85) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
  transition: background 0.4s ease;
}
.event-card:hover .event-card-overlay {
  background: linear-gradient(180deg, rgba(194,118,64,0.08) 0%, rgba(46,42,38,0.92) 100%);
}
.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; margin-bottom: 0.5rem;
  color: var(--white);
}
.event-card p {
  color: var(--warm-grey); font-size: 0.9rem;
  transform: translateY(10px); opacity: 0;
  transition: all 0.4s ease;
}
.event-card:hover p { transform: translateY(0); opacity: 1; }

/* ===== BEERS SECTION ===== */
.beers { background: var(--charcoal); }
.beers .section-title { color: var(--text-dark); }

/* ===== SOFTS SECTION ===== */
.softs { background: var(--white); }
.softs .section-title { color: var(--text-dark); }
.beers-showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.beers-image { position: relative; border-radius: 20px; overflow: hidden; }
.beers-image img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.beers-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem; margin-bottom: 1rem;
  color: var(--text-dark);
}
.beers-info h3 span { color: var(--orange); }
.beers-info p { color: var(--text-body); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; }
.beer-list { list-style: none; margin-bottom: 2rem; }
.beer-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 1rem; color: var(--text-dark);
}
.beer-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

.feature-icon {
  color: var(--orange);
}

/* ===== TESTIMONIALS / QUOTE ===== */
.quote-section {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  text-align: center;
  padding: 5rem 4%;
  color: var(--white);
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic; font-weight: 400;
  max-width: 800px; margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.quote-author {
  font-size: 0.9rem; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.8;
}

/* ===== SECTION SEPARATOR ===== */
.section-separator {
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(194, 118, 64, 0.15) 20%, rgba(194, 118, 64, 0.15) 80%, transparent);
}

/* ===== CONTACT SECTION ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1100px; margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem; margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item p { color: var(--text-body); }
.contact-item strong { color: var(--text-dark); display: block; margin-bottom: 0.2rem; }
.social-links {
  display: flex; gap: 1rem; margin-top: 2rem;
}
.social-link {
  width: 45px; height: 45px;
  border: 2px solid var(--border-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text-dark); font-size: 1.1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange); border-color: var(--orange);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--charcoal);
  padding: 2.5rem; border-radius: 20px;
  border: 1px solid var(--border-light);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-body);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.9rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px; color: var(--text-dark);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 3rem 4% 1.5rem;
  border-top: none;
  color: var(--white);
}
.footer-content {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--orange); }
.footer-text { color: var(--warm-grey); font-size: 0.85rem; }
.footer-legal {
  text-align: center; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-legal p { color: var(--warm-grey); font-size: 0.8rem; }
.footer-legal a { color: var(--orange); text-decoration: none; }

/* ===== BUBBLES ANIMATION ===== */
.bubbles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.bubble {
  position: absolute; bottom: -30px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(194,118,64,0.1), rgba(194,118,64,0.03));
  border: 1px solid rgba(194,118,64,0.08);
  animation: bubbleRise linear infinite;
}
@keyframes bubbleRise {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .concept-grid, .beers-showcase, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: var(--cream); flex-direction: column;
    justify-content: center; align-items: center;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links a { color: var(--text-dark) !important; }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .features { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
}
