/* =========================================================
   OBA BRASIL — VISUAL SYSTEM
   Character: Zuckerhut / Rio / hand-made / modern event bar
========================================================= */

:root {
  --green: #0d5d38;
  --deep-green: #073d27;
  --green-2: #1d7548;
  --yellow: #f5c51b;
  --gold: #e9ad0a;
  --blue: #175da8;
  --sky: #2c79c5;
  --cream: #f8f4e8;
  --paper: #fffdf7;
  --ink: #202521;
  --muted: #69706a;
  --line: rgba(32, 37, 33, .13);
  --white: #fff;
  --deep-blue: #143459;
  
  --display: "Playfair Display", serif;
  --body: "DM Sans", sans-serif;
  --script: "Playfair Display", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--body); line-height: 1.55; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* =========================================================
   BILDER & KÄSTEN (PROPORTIONAL & BILDANPASSEND)
   ========================================================= */
.image-slot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d9d1bc, #b6c3b2);
  width: 100%;
}

.image-slot img,
.responsive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.experience-image img.responsive-img{
  object-fit: cover;
  transform-origin:bottom center ;
  transform: scale(1.3) translate(-45px,0px);
}
/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
  height: 88px; position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; padding: 0 4vw;
  background: rgba(248, 244, 232, .88); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand-mark { width: 150px; height: 72px; display: flex; align-items: center; }
.brand-logo-slot { width: 142px; height: 68px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.brand-logo-slot img { width: 100%; height: 100%; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.main-nav > a { opacity: .72; transition: .2s; }
.main-nav > a:hover, .main-nav > a.active { opacity: 1; color: var(--green); }

.menu-pill {
  background: var(--green); color: white !important; opacity: 1 !important; padding: 13px 19px;
  border-radius: 50px; display: inline-flex; align-items: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
}
.menu-pill:hover { transform: scale(1.08); }
.menu-pill span { color: var(--yellow); }

.menu-button { display: none; background: none; border: 0; width: 40px; height: 40px; }
.menu-button span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px auto; }

/* =========================================================
   HERO SEKTION
   ========================================================= */
.hero {
  min-height: 920px; position: relative; overflow: hidden; background: var(--green);
  color: white; display: flex; align-items: center; padding: 130px 7vw 80px;
}
.hero-sun {
  position: absolute; width: min(55vw, 760px); height: min(55vw, 760px); border-radius: 50%;
  background: var(--yellow); right: -8vw; top: -12vw; box-shadow: 0 0 0 30px rgba(245, 197, 27, .08);
}
.hero-wave { position: absolute; border-radius: 50%; transform: rotate(-18deg); }
.hero-wave-one { width: 75vw; height: 18vw; right: -15vw; bottom: 9%; background: var(--blue); opacity: .9; }
.hero-wave-two { width: 80vw; height: 10vw; right: -12vw; bottom: 5%; background: var(--yellow); }

.hero-copy { position: relative; z-index: 3; width: 58%; max-width: 780px; }
.eyebrow { font-size: 11px; letter-spacing: .22em; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: var(--yellow); display: inline-block; }

.hero h1, .page-hero h1, .drink-hero h1 { font: 600 clamp(76px, 10vw, 150px)/.82 var(--display); letter-spacing: -.055em; margin: 35px 0; }
.hero h1 em, .page-hero h1 em, .drink-hero h1 em { font-family: var(--script); font-style: italic; color: var(--yellow); font-size: .68em; letter-spacing: -.03em; }

.hero-subtitle { font-size: 18px; max-width: 530px; color: rgba(255, 255, 255, .82); }
.hero-actions { display: flex; gap: 13px; margin-top: 35px; flex-wrap: wrap; }

.btn {
  min-height: 52px; padding: 0 24px; border-radius: 50px; display: inline-flex;
  align-items: center; gap: 13px; font-weight: 700; font-size: 14px; border: 1px solid transparent; transition: .22s;
}
.btn b {
  font-family: system-ui, sans-serif; font-size: 13px; font-weight: 600;
  width: 26px; height: 26px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; margin-left: 6px; transition: all 0.2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover b { background: rgba(0, 0, 0, 0.2); transform: translateX(3px); }

.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-green { background: var(--green); color: white; min-height: 64px; padding: 0 38px; font-size: 16px; }
.btn-ghost { border-color: rgba(255, 255, 255, .5); color: white; }
.btn-ghost:hover { background: white; color: var(--ink); }
.btn-dark { background: var(--ink); color: white; }

.hero-logo-frame {
  position: absolute; z-index: 4; right: 12vw; bottom: 24%; width: min(31vw, 410px); height: min(31vw, 410px);
  border: none; border-radius: 50%; background: rgba(248, 244, 232, 0.8); backdrop-filter: blur(10px); padding: 35px;
}
.logo-image-slot { width: 100%; height: 100%; background: transparent; display: flex; align-items: center; justify-content: center; }
.logo-image-slot img { width: 100%; height: 100%; object-fit: contain; }
.frame-note { position: absolute; bottom: -25px; right: 20px; font-size: 9px; letter-spacing: .2em; color: rgba(255, 255, 255, .7); }

.hero-bottom { position: absolute; left: 7vw; right: 7vw; bottom: 30px; z-index: 5; display: flex; gap: 20px; align-items: center; font-size: 9px; letter-spacing: .2em; }
.scroll-line { height: 1px; background: rgba(255, 255, 255, .35); width: 100px; }

/* =========================================================
   SEKTIONEN GENERAL
   ========================================================= */
.section-pad { padding: 120px 7vw; }
.section-tag { font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--green); margin-bottom: 60px; }
.kicker { font-size: 11px; letter-spacing: .18em; font-weight: 700; color: var(--green); margin-bottom: 20px; }
.kicker.light { color: var(--yellow); }

.intro h2, .cards-heading h2, .experience h2, .event-strip h2, 
.gallery-top h2, .contact-banner h2, .event-details h2, 
.event-cta h2, .optional-grid h2, .contact-intro h2 {
  font: 600 clamp(50px, 6.2vw, 90px)/.98 var(--display);
  letter-spacing: -.045em;
}

.intro h2 span, .cards-heading h2 span, .event-strip h2 span, 
.gallery-top h2 span, .event-details h2 span, .event-cta h2 span, 
.contact-intro h2 span {
  color: var(--green); font-family: var(--script); font-size: .72em;
}

.intro { background: var(--cream); }
.intro-layout, .two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; }
.intro-text { max-width: 580px; padding-top: 30px; }
.intro-text p { font-size: 18px; color: var(--muted); margin-bottom: 25px; }

.arrow-link { display: inline-flex; gap: 18px; align-items: center; color: var(--green); font-weight: 700; margin-top: 15px; }
.arrow-link span { font-size: 22px; transition: .2s; }
.arrow-link:hover span { transform: translateX(6px); }

/* EXPERIENCE SEKTION */
.experience { display: grid; grid-template-columns: 1.12fr .88fr; align-items: stretch; }
.experience-image { width: 100%; aspect-ratio: 4 / 3; }
.experience-copy { background: var(--blue); color: white; padding: 70px 8vw; position: relative; overflow: hidden; }
.experience-copy:after { content: ""; position: absolute; width: 300px; height: 300px; border: 70px solid rgba(245, 197, 27, .16); border-radius: 50%; right: -130px; top: -90px; }
.experience h2 em { font-family: var(--script); font-style: italic; color: var(--yellow); font-size: .75em; }
.experience-copy > p:not(.kicker) { color: rgba(255, 255, 255, .78); max-width: 450px; margin-top: 30px; font-size: 17px; }
.mini-number { position: absolute; right: 35px; top: 35px; font-size: 11px; letter-spacing: .2em; color: rgba(255, 255, 255, .6); }
.signature-line { margin-top: 60px; font-size: 10px; letter-spacing: .2em; display: flex; gap: 10px; align-items: center; }
.signature-line span { width: 45px; height: 2px; background: var(--yellow); }

/* CARDS SEKTION */
.cards-section { background: var(--paper); }
.cards-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 55px; }
.cards-heading p { max-width: 300px; color: var(--muted); }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { min-height: 390px; padding: 36px; position: relative; overflow: hidden; }
.green-card { background: var(--green); color: white; }
.yellow-card { background: var(--yellow); }
.blue-card { background: var(--blue); color: white; }
.card-index { position: absolute; right: 28px; top: 25px; font-size: 10px; opacity: .55; }
.card-symbol { font-size: 50px; line-height: 1; margin: 45px 0 80px; }
.feature-card h3 { font: 600 32px/1.05 var(--display); }
.feature-card p { margin-top: 15px; max-width: 350px; opacity: .75; font-size: 14px; }

/* DRINK TEASER SEKTION */
.drink-teaser { background: var(--yellow); position: relative; display: grid; grid-template-columns: 1fr .8fr; align-items: center; padding: 100px 7vw; overflow: hidden; }
.drink-shape { position: absolute; width: 580px; height: 580px; border-radius: 50%; background: var(--green); right: -220px; top: -190px; }
.drink-copy { position: relative; z-index: 2; }
.drink-copy h2 { font: 600 clamp(65px, 8vw, 115px)/.9 var(--display); letter-spacing: -.05em; }
.drink-copy p { max-width: 430px; margin: 25px 0; color: rgba(32, 37, 33, .72); font-size: 17px; }
.drink-placeholder { width: min(100%, 480px); aspect-ratio: 4 / 5; justify-self: end; transform: rotate(3deg); border: 12px solid var(--cream); box-shadow: 20px 25px 0 rgba(7, 61, 39, .14); }

/* EVENT STRIP SEKTION */
.event-strip { background: var(--cream); }
.event-strip-content { display: flex; justify-content: space-between; align-items: end; gap: 40px; }

/* GALERIE PREVIEW SEKTION */
.gallery-preview { background: var(--paper); }
.gallery-top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 45px; }
.preview-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 12px; align-items: stretch; }
.preview-grid .image-slot { aspect-ratio: 1 / 1; }
.preview-grid .image-slot.tall { aspect-ratio: 4 / 5; }

/* KONTAKT BANNER */
.contact-banner { background: var(--green); color: white; min-height: 500px; padding: 100px 7vw; display: flex; justify-content: space-between; align-items: end; position: relative; overflow: hidden; }
.contact-sun { position: absolute; width: 450px; height: 450px; border-radius: 50%; background: var(--blue); right: 8%; top: -250px; box-shadow: 0 0 0 80px rgba(245, 197, 27, .9); }
.contact-banner h2 { position: relative; z-index: 2; }
.contact-banner h2 em { font-family: var(--script); font-style: italic; color: var(--yellow); font-size: .8em; }
.contact-banner .btn { position: relative; z-index: 2; }

/* FOOTER */
.site-footer { background: var(--deep-blue); color: white; padding: 55px 7vw 35px; display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 50px; }
.footer-logo-slot { width: 150px; height: 150px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 15px; }
.footer-logo-slot img { width: 100%; height: 100%; object-fit: contain; }
.footer-middle p { color: rgba(255, 255, 255, .65); margin-bottom: 25px; }
.footer-middle > div { display: flex; gap: 25px; flex-wrap: wrap; font-size: 12px; color: rgba(255, 255, 255, .6); }
.footer-copy { font-size: 10px; color: rgba(255, 255, 255, .4); }

/* =========================================================
   KLASSEN FÜR UNTERSEITEN (EVENTS, GALERIE, GETRÄNKE, KONTAKT)
   ========================================================= */
.page-hero { min-height: 650px; padding: 170px 7vw 100px; position: relative; overflow: hidden; display: flex; align-items: end; color: white; }
.green-page { background: var(--green); }
.blue-page { background: var(--blue); }
.yellow-page { background: var(--yellow); color: var(--ink); }

.page-hero:after { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; right: -100px; top: -160px; background: var(--yellow); box-shadow: 0 0 0 55px rgba(23, 93, 168, .35); }
.blue-page:after { background: var(--yellow); box-shadow: 0 0 0 55px rgba(13, 93, 56, .45); }
.yellow-page:after { background: var(--blue); box-shadow: 0 0 0 55px rgba(13, 93, 56, .3); }

.page-hero-content { max-width: 850px; position: relative; z-index: 2; }
.page-hero-content > p:last-child { max-width: 570px; font-size: 18px; color: rgba(255, 255, 255, .78); }
.dark-content > p:last-child { color: rgba(32, 37, 33, .7); }

.event-details { background: var(--cream); }
.event-details .two-col > div:last-child { padding-top: 30px; }
.event-details .two-col > div:last-child p { font-size: 18px; color: var(--muted); margin-bottom: 25px; }
.event-photo { height: 650px; }

.occasion-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.occasion-grid article { padding: 35px 25px 50px 0; border-bottom: 1px solid var(--line); }
.occasion-grid article:not(:last-child) { border-right: 1px solid var(--line); padding-right: 30px; margin-right: 30px; }
.occasion-grid span { font-size: 10px; color: var(--green); letter-spacing: .15em; }
.occasion-grid h3 { font: 600 36px/1.02 var(--display); margin: 30px 0 20px; }
.occasion-grid p { font-size: 14px; color: var(--muted); }

.optional-section { background: var(--green); color: white; }
.light-tag { color: var(--yellow); }
.optional-grid > div:last-child { padding-top: 15px; }
.optional-list { border-top: 1px solid rgba(255, 255, 255, .2); }
.optional-list > div { display: grid; grid-template-columns: 45px 1fr auto; gap: 15px; padding: 19px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); align-items: center; }
.optional-list b { color: var(--yellow); font-size: 10px; }
.optional-list span { font-size: 17px; }
.optional-list small { color: rgba(255, 255, 255, .5); }
.event-cta { text-align: center; background: var(--yellow); }
.event-cta .btn { margin-top: 35px; }

.masonry { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 250px; gap: 12px; }
.masonry .g1 { grid-row: span 2; }
.masonry .g4 { grid-column: span 2; }
.masonry .g6 { grid-column: span 2; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; background: var(--cream); }
.contact-list { margin-top: 55px; border-top: 1px solid var(--line); }
.contact-list a { display: flex; flex-direction: column; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list small { font-size: 10px; letter-spacing: .16em; color: var(--muted); }
.contact-list strong { font-size: 18px; margin-top: 3px; }
.contact-form { display: grid; gap: 20px; }
.contact-form label { font-size: 18px; letter-spacing: .08em; font-weight: 700; display: grid; gap: 9px; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 12px 0; outline: 0; color: var(--ink); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.contact-form .btn { width: max-content; border: 0; cursor: pointer; }

.drink-page { background: var(--cream); }
.drink-hero { background: var(--green); color: white; min-height: 600px; padding: 135px 7vw 70px; text-align: center; position: relative; overflow: hidden; }
.drink-logo-slot { width: 190px; height: 190px; margin: 0 auto 35px; border-radius: 50%; background: var(--cream); padding: 25px; display: flex; align-items: center; justify-content: center; }
.drink-logo-slot img { width: 100%; height: 100%; object-fit: contain; }
.drink-hero > p { font-size: 10px; letter-spacing: .25em; color: var(--yellow); font-weight: 700; }
.drink-hero h1 { margin: 28px 0 15px; font-size: clamp(55px, 8vw, 105px); }
.drink-hero > span { color: rgba(255, 255, 255, .65); }
.menu-board { max-width: 900px; margin: 0 auto; padding: 100px 30px 120px; }
.menu-category { margin-bottom: 75px; }
.menu-title { display: flex; gap: 20px; align-items: baseline; border-bottom: 2px solid var(--green); padding-bottom: 16px; margin-bottom: 5px; }
.menu-title span { font-size: 10px; color: var(--green); letter-spacing: .1em; }
.menu-title h2 { font: 600 46px/1 var(--display); }
.menu-item { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.menu-item h3 { font-size: 18px; }
.menu-item p { color: var(--muted); font-size: 13px; margin-top: 3px; }
.menu-item > b { color: var(--green); }
.menu-note { border-top: 1px solid var(--line); padding-top: 20px; font-size: 11px; color: var(--muted); }

/* =========================================================
   RESPONSIVE (MOBILE) ANPASSUNGEN
   ========================================================= */
@media (max-width: 900px) {
  .site-header { height: 76px; padding: 0 20px; }
  .brand-mark { width: 120px; }
  .brand-logo-slot { width: 112px; height: 58px; }

  .main-nav {
    position: fixed; top: 76px; left: 0; right: 0; background: var(--cream);
    padding: 25px 25px 35px; display: flex; flex-direction: column; align-items: stretch;
    gap: 0; transform: translateY(-130%); transition: .3s; box-shadow: 0 20px 30px rgba(0, 0, 0, .08);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav > a { padding: 17px 0; border-bottom: 1px solid var(--line); opacity: 1; }
  .main-nav .menu-pill-wrapper { width: 100%; padding: 15px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: flex-start; }
  .main-nav .menu-pill { width: fit-content; padding: 10px 20px; margin: 0; font-size: 13px; border: 0; box-shadow: none; }

  .menu-button { display: block; }

  .hero { min-height: 850px; padding: 125px 7vw 70px; }
  .hero-copy { width: 100%; z-index: 5; }
  .hero h1 { font-size: clamp(70px, 17vw, 120px); }
  .hero-logo-frame { width: 240px; height: 240px; right: 5vw; top: 290px; }
  .hero-bottom { display: none; }

  .intro-layout, .two-col, .experience, .drink-teaser, .contact-layout { grid-template-columns: 1fr; }
  .experience-image { aspect-ratio: 16 / 9; }
  .experience-copy { padding: 65px 7vw; }

  .feature-cards { grid-template-columns: 1fr; }
  .cards-heading { display: block; }
  .cards-heading p { margin-top: 20px; }

  .drink-placeholder { justify-self: start; margin-top: 50px; width: 100%; aspect-ratio: 1 / 1; }
  .event-strip-content, .gallery-top, .contact-banner { align-items: flex-start; flex-direction: column; }

  .preview-grid { grid-template-columns: 1fr; }
  .contact-banner { gap: 45px; }

  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .occasion-grid article:nth-child(2) { border-right: 0; }
  .occasion-grid article:nth-child(3) { border-right: 1px solid var(--line); }

  .masonry { grid-template-columns: 1fr 1fr; }
  .masonry .g1, .masonry .g4, .masonry .g6 { grid-column: auto; grid-row: auto; }

  .site-footer { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-logo-slot { margin: 0 auto; }
  .footer-middle > div { justify-content: center; }
}