/*=========================================
ROOT VARIABLES
=========================================*/

:root{
  --espresso: #161412;
  --coffee: #4f3b2e;
  --cream: #f6f1ea;
  --latte: #d7c4b2;
  --sage: #7d8773;
  --gold: #c3a36a;
  --gold-dark: #b79254;

  --text-soft: #4a4642;
  --white-soft: #fffaf3;

  --max-width: 1200px;
}

/*=========================================
GLOBAL RESET
=========================================*/

html {
  scroll-behavior: smooth;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Raleway', sans-serif;
  background:var(--cream);
  color:var(--espresso);
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

a {
  color: inherit;
  text-decoration: none;
}
ul{
  list-style:none;
}


/*=========================================
TYPOGRAPHY
=========================================*/
h1,
h2,
h3,
.logo{
  font-family: 'Cormorant Garamond', serif;
}

.section-h2{
 font-size: 2rem;
font-weight:500;
line-height:1.1;
margin-bottom:24px;
}

.section-h3{
  font-size:1.8rem;
font-weight:500;
margin-bottom:16px;
}

.section-p{
  max-width:650px;
  font-size:1.1rem;
  color:var(--text-soft);
}
/*=========================================
LAYOUT
=========================================*/

.container{
  max-width:var(--max-width);
  margin:0 auto;
}

.section{
  padding:100px 60px;
}

/*=========================================
EYEBROW
=========================================*/

.eyebrow{
  display:inline-block;

  color:var(--gold);

  text-transform:uppercase;
  letter-spacing:3px;

  font-size:.85rem;
  font-weight:600;

  margin-bottom:18px;
}


/*=========================================
BUTTONS
=========================================*/

.btn-primary{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:14px 32px;

  background:var(--gold);

  color:white;

  border-radius:999px;

  font-weight:600;

  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:var(--gold-dark);
}

.btn-secondary{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:14px 32px;

  border:1px solid var(--gold);

  color:var(--gold);

  border-radius:999px;

  transition:.3s;
}

.btn-secondary:hover{
  background:var(--gold);
  color:white;
}

/*=========================================
DARK SECTION
=========================================*/

.dark-section{
  background:var(--espresso);
  color:var(--cream);
}

.dark-section .section-h2,
.dark-section .section-h3{
  color:var(--cream);
}

.dark-section .section-p{
  color:#d9d2cb;
}

/*===========================================================================
DEMO BAR
=============================================================================*/

.demo-bar-wildflower {
  background: var(--espresso);
  padding: 14px 14px;
  text-align: center;
}

.demo-bar-wildflower a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  
}
.demo-bar-wildflower a:hover {
  color: var(--gold);
}


/*===========================================================================
HEADER
=============================================================================*/

.site-header {
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(79, 59, 46, 0.08);

  position: fixed;
  top: 46px;
  left: 0;
  width: 100%;
  z-index: 1000;

  transition: transform 0.3s ease;
}

.site-header.hide-header {
  transform: translateY(calc(-100% - 46px));
}

.logo {
  color: var(--coffee);
  font-weight: 700;
  font-size: 2rem;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--coffee);
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
}

  .nav-toggle {
  display: none;
}

/*===========================================================================
HEADER MOBILE
=============================================================================*/

@media (max-width: 768px) {

  .site-header {
    padding: 20px 24px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.7rem;
    line-height: 1;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;

    background: none;
    border: none;
    cursor: pointer;

    margin-left: auto;
    padding: 6px;
  }
  .nav-toggle {
  display: none;
}

  .hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--coffee);
  }

  .main-nav {
    display: none;
    width: 100%;

    flex-direction: column;
    align-items: flex-end;
    gap: 18px;

    padding-top: 24px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    font-size: 1rem;
  }
}


/*=========================================
MOBILE GLOBALS
=========================================*/

@media (max-width: 768px) {

  .section {
    padding: 70px 24px;
  }

  .section-p {
    font-size: 1rem;
  }
}


/*===============================================================================
HERO HERO HERO HERO HERO HERO HERO
==============================================================================*/

.hero {
  position: relative;
  min-height: 80vh;
 padding: 160px 60px 100px;



  display: flex;
  align-items: center;

  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  overflow: hidden;
}

/* Decorative Wildflower Sketch */

.hero::after{
  content:"";

  position:absolute;

  bottom:-230px;
  right:-190px;

  width:620px;
  height:620px;

  background-image:url("images/hero_bouquet.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;

  opacity:.18;

  pointer-events:none;

  z-index:2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.58);
  z-index: 1;
}

.hero-content{
  position:relative;
  z-index:3;

  max-width:580px;
  margin-left: 450px;
  color:var(--cream);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero p {
  max-width: 520px;
  font-size: 1.15rem;
  color: #eee3d7;
  margin-bottom: 34px;
}

@media (max-width: 768px) {

  .hero {
    min-height: 70vh;

    padding: 140px 24px 80px;
 background-image: url("images/reverse-hero-mobile.webp");
    background-attachment: scroll;
   background-position: right center;
    background-size: cover;
  }

  .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }
  
.hero::after {
display: none;
  }

}


/*===============================================================================
OUR STORY
=============================================================================*/


.story {
  background: var(--cream);
}

.story-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.story-content {
  flex: 50%;
  min-width: 0;
}

.story-image {
  flex: 45%;
  min-width: 0;
}

.story-content .section-p {
  margin-bottom: 20px;
}

.story-tagline {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 25px;
  color: var(--sage);
}

.story-image img,
.story-image-mobile img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* Hide mobile image on desktop */
.story-image-mobile {
  display: none;
}

@media (max-width: 768px) {

  .story {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-flex {
    flex-direction: column;
    gap: 30px;
  }

  .story-content,
  .story-image {
    width: 100%;
    flex: none;
  }

  /* Hide desktop image */
  .story-image {
    display: none;
  }

  /* Show mobile image between paragraph and button */
  .story-image-mobile {
    display: block;
    width: calc(100vw - 40px);
    margin: 25px 0;
  }

  .story-image-mobile img {
    width: 100%;
    max-width: none;
    display: block;
  }

  .story-button {
    display: inline-block;
    margin-top: 30px;
  }

  .story-tagline {
    padding-top: 10px;
    font-size: 1.4rem;
  }

}

/*===============================================================================
MENU MENU MENU MENU MENU MENU 
==============================================================================*/


.menu-preview {
  background: var(--espresso);
  padding: 100px 60px;
  color: var(--cream);
}

.menu-container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.menu-preview .eyebrow {
  color: var(--gold);
}

.menu-preview h2 {
  max-width: 760px;
  margin: 0 auto 20px;
}

.menu-preview .section-intro {
  max-width: 680px;
  margin: 0 auto 60px;
  color: var(--latte);
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.menu-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(215,196,178,0.15);
  overflow: hidden;
}

.menu-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.menu-card > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.menu-card-content {
  padding: 35px 28px 40px;
}

.menu-icon {
  width: 46px;
  height: auto;
  margin: 0 auto 5px;
}

.menu-card h3 {
  color: var(--cream);
  margin-bottom: 5px;
}

.menu-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 8px;
}

.menu-card p {
  color: var(--latte);
}

@media (max-width: 900px) {
  .menu-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-preview {
    padding: 70px 30px;
  }

  .menu-card > img {
    height: 240px;
  }
}

/*===============================================================================
VISIT
==============================================================================*/


.visit {
  padding: 100px 60px;
  background: var(--cream);
}

.visit-container {
  max-width: var(--max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.visit-image img {
  width: 100%;
  display: block;
}

.visit-content {
  max-width: 520px;
}

.visit-content .section-p {
  margin-bottom: 20px;
}

.visit-features {
  margin-top: 30px;
}

.visit-features li {
  margin-bottom: 12px;
  color: var(--coffee);
}

.visit-features li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
}

@media (max-width: 900px) {
  .visit-container {
    grid-template-columns: 1fr;
  }
    .visit {
    padding: 70px 0;
  }

  .visit-container {
    gap: 45px;
  }

  .visit-image img {
    width: 100%;
  }

  .visit-content {
    padding: 0 24px;
    max-width: 100%;
  }
}

/*===========================================================================
FULL MENU 
=============================================================================*/

.full-menu {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: 100px 60px;
  overflow: hidden;
}

.full-menu::after {
  content: "";
  position: absolute;
  left: -45px;
  bottom: 40px;
  width: 500px;
  height: 400px;
  background-image: url("images/coffee_croissant.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .22;
  pointer-events: none;
  z-index: 1;
}

.full-menu-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.full-menu-content {
  flex: 0.8;
  max-width: 350px;
}

.full-menu-content h2 {
  margin-bottom: 20px;
}

.full-menu-content p {
  color: var(--latte);
}

.full-menu-items {
  flex: 1.8;
  display: flex;
  gap: 55px;
}

.full-menu-list {
  flex: 1;
}

.full-menu-list h3 {
  color: var(--gold);
  margin-bottom: 25px;
}

.full-menu-subtitle {
  margin-top: 45px;
}

.full-menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(215, 196, 178, 0.25);
  color: var(--latte);
}

.full-menu-list li span:first-child {
  color: var(--cream);
}

.full-menu-list li span:last-child {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .full-menu-container {
    flex-direction: column;
    gap: 55px;
  }

  .full-menu-content {
    max-width: 520px;
  }

  .full-menu-items {
    width: 100%;
  }

  .full-menu::after {
    left: 80px;
  }

}

@media (max-width: 768px) {
  .full-menu {
    padding: 70px 30px;
  }

  .full-menu-items {
    flex-direction: column;
    gap: 45px;
  }
}

/*===============================================================================
CONTACT
==============================================================================*/

/*=========================================
CONTACT
=========================================*/

.contact {
  padding: 100px 60px;
  background: var(--cream);
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content {
  max-width: 500px;
}

.contact-content .section-h2 {
  margin: 20px 0 25px;
}

.contact-content .section-p {
  margin-bottom: 45px;
}

.contact-notes {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-note h3 {
  margin-bottom: 10px;
  color: var(--coffee);
}

.contact-note p {
  color: var(--text-soft);
}

/* FORM */

.contact-form {
  border: 1px solid rgba(79, 59, 46, 0.15);
  padding: 50px;
  background: rgba(255,255,255,0.25);
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--coffee);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 30px;

  border: 1px solid rgba(79, 59, 46, 0.15);
  background: transparent;

  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form .btn-primary {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .contact {
    padding: 70px 22px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-content .section-p {
    margin-bottom: 35px;
  }

  .contact-notes {
    gap: 25px;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    margin-bottom: 24px;
  }

  .contact-form textarea {
    min-height: 150px;
  }
}

/*===============================================================================
FOOTER
==============================================================================*/

.site-footer {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: 60px 60px 35px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: 30px;
  width: 720px;
  height: 360px;
  background-image: url("images/footer_bouquet.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  opacity: 0.32;
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.footer-brand {
  width: 330px;
}

.footer-logo-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.footer-sprig {
  width: 38px;
  height: 80px;
  background-image: url("../images/footer_sprig.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-brand h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-brand > p,
.footer-logo-row p {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--latte);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--latte);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links {
  width: 170px;
}

.footer-social {
  width: 220px;
}

.footer-links h3,
.footer-social h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--latte);
  color: var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-bottom {
  width: 610px;
  margin-left: 420px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(215, 196, 178, 0.35);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  color: var(--latte);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.footer-legal a {
  color: var(--cream);
}

.footer-legal a:hover {
  color: var(--gold);
}

/*=========================================
FOOTER MOBILE
=========================================*/

@media (max-width: 768px) {

  .site-footer {
    padding: 55px 30px 35px;
  }

  .site-footer::before {
    width: 420px;
    height: 220px;
    right: -50px;
    bottom: 95px;
    opacity: 0.18;
  }

  .footer-main {
    flex-direction: column;
    gap: 38px;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    width: 100%;
  }

  .footer-bottom {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}