/* style.css - Mobile First Approach */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  margin-top:60px;
}

/* ==================== MOBILE FIRST: DEFAULT (< 768px) ==================== */

/* NAVBAR - MOBILE */
.navbar{
  width:100%;
  height:60px;
  background: rgba(247,241,234,0.95);
  backdrop-filter: blur(10px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 15px;
  border-bottom:1px solid #e7d9cc;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.logo h2{
  font-family:'Cormorant Garamond',serif;
  font-size:20px;
  font-weight:600;
}

.logo p{
  display:none;
}

.cup{
  font-size:20px;
}

/* Hamburger Menu */
.hamburger{
  display:flex;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:5px;
}

.hamburger span{
  width:24px;
  height:2px;
  background:#4b2e22;
  transition:0.3s;
}

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

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

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

/* Navigation Menu - Mobile */
.nav-menu{
  display:none;
  position:absolute;
  top:60px;
  left:0;
  right:0;
  background:rgba(247,241,234,0.98);
  flex-direction:column;
  padding:20px;
  gap:15px;
  border-bottom:1px solid #e7d9cc;
}

.nav-menu.active{
  display:flex;
}

.nav-menu a{
  text-decoration:none;
  color:#4b2e22;
  font-size:14px;
  letter-spacing:1px;
  padding:10px 0;
  border-bottom:1px solid #e7d9cc;
}

.reserve-btn{
  display:none;
}

/* HERO - MOBILE */
#main-div{
  margin-top:0;
}

.hero{
  width:100%;
  min-height:auto;
  background-image:url(./assets/hero-img.png);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  background-size:cover;
  background-position:center;
}

.hero-left{
  width:100%;
  text-align:center;
}

.hero-left h1{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  line-height:1.2;
  font-weight:500;
  margin-bottom:20px;
}

.line{
  width:80px;
  height:2px;
  background:#7a5b46;
  margin:20px auto;
}

.hero-left p{
  font-size:16px;
  line-height:1.6;
  margin-bottom:30px;
}

.hero-left button {
  background:#6a3f26;
  color:white;
  border:none;
  padding:14px 24px;
  border-radius:8px;
  font-size:13px;
  cursor:pointer;
}

.hero-right{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:30px;
}



/* STORY - MOBILE */
.story{
  width:100%;
  padding:40px 20px;
  display:flex;
  flex-direction:column;
  gap:30px;
  background:#f8f5f1;
}

.story-image img{
  width:100%;
  border-radius:8px;
  transform:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.story-content span{
  font-size:12px;
  letter-spacing:2px;
}

.story-content h2{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  line-height:1.2;
  margin:15px 0;
}

.story-content p{
  line-height:1.8;
  color:#5c4b40;
  margin-bottom:20px;
  font-size:14px;
}

.story-content button{
  background:transparent;
  border:1px solid #8b6f5c;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
  font-size:13px;
}

.story-sketch{
  display:none;
}

.circle-art{
  width:200px;
  height:200px;
  border:2px solid #b48a70;
  border-radius:50%;
}

/* MENU - MOBILE */
.menu-section{
  padding:40px 20px;
}

.menu-section h3{
  text-align:center;
  margin-bottom:30px;
  letter-spacing:2px;
  font-size:14px;
}

.menu-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.card{
  background:white;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card-content{
  padding:18px;
}

.card-content h4{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;
  margin-bottom:8px;
}

.card-content p{
  font-size:13px;
  color:#666;
  line-height:1.6;
  margin-bottom:12px;
}

.card-content span{
  font-weight:600;
  font-size:14px;
}

/* QUOTE - MOBILE */
.quote-box{
  width:90%;
  max-width:300px;
  margin:40px auto;
  background:#f0e2d3;
  padding:30px;
  border-radius:12px;
  text-align:center;
}

.quote-box p{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;
  line-height:1.5;
}

/* GALLERY - MOBILE */
.gallery-section{
  padding:40px 20px;
  background:#f8f5f1;
}

.gallery-section h2{
  text-align:center;
  font-family:'Cormorant Garamond',serif;
  font-size:36px;
  margin-bottom:30px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:15px;
}

.gallery-grid a{
  display:block;
  border-radius:12px;
  overflow:hidden;
}

.gallery-grid img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.4s;
  cursor:pointer;
}

.gallery-grid img:hover{
  transform:scale(1.02);
}

.gallery-btn{
  display:block;
  margin:30px auto 0;
  background:#6a3f26;
  color:white;
  border:none;
  padding:14px 24px;
  border-radius:8px;
  text-decoration:none;
  font-size:13px;
  cursor:pointer;
  width: fit-content;
  padding: 14px 24px;
}

a{
  text-decoration:none;
  color:inherit;
}

/* VISIT - MOBILE */
.visit-section{
  padding:40px 20px;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.visit-left span{
  font-size:12px;
  letter-spacing:2px;
}

.visit-left h2{
  font-family:'Cormorant Garamond',serif;
  font-size:32px;
  line-height:1.2;
  margin:15px 0;
}

.visit-left p{
  font-size:14px;
  line-height:1.8;
  margin-bottom:30px;
}

.visit-details{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:20px;
}

.visit-details div h4{
  font-size:14px;
  margin-bottom:5px;
}

.visit-details div p{
  font-size:13px;
}

.drctn{
  background:#6a3f26;
  color:white;
  border:none;
  padding:14px 24px;
  border-radius:8px;
  cursor:pointer;
  font-size:13px;
  text-decoration:none;
  display:inline-block;
}

.visit-right img{
  width:100%;
  border-radius:10px;
}

/* FOOTER - MOBILE */
footer{
  background:#5a311f;
  color:white;
  padding:30px 20px;
  display:flex;
  flex-direction:column;
  gap:20px;
  text-align:center;
}

.footer-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:28px;
}

.footer-info{
  line-height:1.8;
  font-size:13px;
}

.footer-socials{
  display:flex;
  gap:15px;
  justify-content:center;
  font-size:13px;
}

.newsletter{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.newsletter input{
  padding:12px;
  border:none;
  border-radius:6px;
  font-size:13px;
  width:100%;
}

.newsletter button{
  background:#c29a7b;
  border:none;
  padding:12px;
  border-radius:6px;
  cursor:pointer;
  font-size:13px;
}

/* ==================== TABLET: 768px and up ==================== */
@media(min-width:768px){
  
  body{
    margin-top:70px;
  }

  /* NAVBAR - TABLET */
  .navbar{
    height:70px;
    padding:0 40px;
  }

  .logo h2{
    font-size:28px;
  }

  .logo p{
    display:block;
    font-size:10px;
  }

  .cup{
    font-size:24px;
  }

  .hamburger{
    display:none;
  }

  .nav-menu{
    display:flex !important;
    position:static;
    flex-direction:row;
    gap:25px;
    padding:0;
    background:none;
    border:none;
    padding-right:20px;
  }

  .nav-menu a{
    font-size:12px;
    border:none;
    text-decoration:underline;
  }

  .reserve-btn{
    display:block;
    background:#6a3f26;
    color:white;
    border:none;
    padding:12px 24px;
    border-radius:8px;
    cursor:pointer;
    font-size:12px;
  }

  /* HERO - TABLET */
  .hero{
    flex-direction:row;
    padding:60px 40px;
    min-height:500px;
    gap:30px;
  }

  .hero-left{
    width:50%;
    text-align:left;
  }

  .hero-left h1{
    font-size:48px;
  }

  .line{
    margin:20px 0;
  }

  .hero-right{
    width:50%;
    margin-top:0;
  }

  .window-box{
    max-width:100%;
    height:350px;
  }

  /* STORY - TABLET */
  .story{
    padding:60px 40px;
    grid-template-columns:1fr 1fr;
    gap:40px;
    display:grid;
  }

  .story-image{
    grid-column:1;
  }

  .story-content{
    grid-column:2;
  }

  .story-content h2{
    font-size:44px;
  }

  .story-sketch{
    display:none;
  }

  /* MENU - TABLET */
  .menu-section{
    padding:60px 40px;
  }

  .menu-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .card-content h4{
    font-size:28px;
  }

  /* GALLERY - TABLET */
  .gallery-section{
    padding:60px 40px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  /* VISIT - TABLET */
  .visit-section{
    padding:60px 40px;
    flex-direction:row;
    gap:50px;
  }

  .visit-left{
    flex:1;
  }

  .visit-right{
    flex:1;
  }

  /* FOOTER - TABLET */
  footer{
    padding:40px;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    flex-wrap:wrap;
  }

  .footer-logo{
    font-size:32px;
  }

  .footer-socials{
    justify-content:flex-start;
  }

  .newsletter{
    flex-direction:row;
    gap:10px;
  }

  .newsletter input{
    width:200px;
  }
}

/* ==================== DESKTOP: 1024px and up ==================== */
@media(min-width:1024px){

  body{
    margin-top:90px;
  }

  /* NAVBAR - DESKTOP */
  .navbar{
    height:90px;
    padding:0 70px;
  }

  .logo h2{
    font-size:38px;
  }

  .logo p{
    font-size:12px;
  }

  .cup{
    font-size:28px;
  }

  .nav-menu{
    gap:35px;
  }

  .nav-menu a{
    font-size:14px;
  }

  .reserve-btn{
    padding:14px 28px;
    font-size:13px;
  }

  /* HERO - DESKTOP */
  .hero{
    padding:80px 90px;
    min-height:650px;
    gap:50px;
  }

  .hero-left{
    width:50%;
  }

  .hero-left h1{
    font-size:72px;
  }

  .hero-left p{
    font-size:18px;
  }

  .hero-left button {
    padding:18px 30px;
    font-size:14px;
  }

  .hero-right{
    width:40%;
  }

  .window-box{
    height:400px;
  }

  .window-text{
    font-size:48px;
  }

  /* STORY - DESKTOP */
  .story{
    padding:100px 90px;
    grid-template-columns:1fr 1fr 1fr;
    gap:50px;
  }

  .story-image img{
    transform:rotate(-4deg);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
  }

  .story-content h2{
    font-size:60px;
  }

  .story-content p{
    line-height:2;
  }

  .story-sketch{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .circle-art{
    width:260px;
    height:260px;
  }

  /* MENU - DESKTOP */
  .menu-section{
    padding:80px 90px;
  }

  .menu-grid{
    grid-template-columns:repeat(4,1fr);
    gap:30px;
  }

  .card img{
    height:240px;
  }

  .card-content{
    padding:22px;
  }

  .card-content h4{
    font-size:32px;
  }

  /* QUOTE - DESKTOP */
  .quote-box{
    width:320px;
    padding:50px;
  }

  .quote-box p{
    font-size:34px;
  }

  /* GALLERY - DESKTOP */
  .gallery-section{
    padding:90px;
  }

  .gallery-section h2{
    font-size:60px;
  }

  .gallery-grid{
    grid-template-columns:repeat(3,1fr);
    gap:25px;
  }

  .gallery-grid img{
    height:320px;
  }

  /* VISIT - DESKTOP */
  .visit-section{
    padding:80px 90px;
  }

  .visit-left h2{
    font-size:48px;
  }

  /* FOOTER - DESKTOP */
  footer{
    padding:40px 90px;
  }
}



a{
  text-decoration:none;
  color:inherit;
}

/* VISIT SECTION */

.visit-section{
  width:100%;
  padding:100px 90px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;

  background:#efe3d5;
}

.visit-left{
  width:50%;
}

.visit-left span{
  font-size:14px;
  letter-spacing:2px;
}

.visit-left h2{
  font-family:'Cormorant Garamond',serif;
  font-size:65px;
  line-height:1.1;

  margin:20px 0 25px 0;
}

.visit-left p{
  line-height:2;
  color:#573e24;
}

.visit-details{
  margin:35px 0;

  display:flex;
  flex-direction:column;
  gap:25px;
}

.visit-details h4{
  font-size:18px;
  margin-bottom:8px;
}

.visit-left button{
  background:#6a3f26;
  color:white;

  border:none;

  padding:16px 28px;

  border-radius:10px;

  cursor:pointer;
}

.visit-right{
  width:45%;
}

.visit-right img{
  width:100%;
  height:600px;

  object-fit:cover;

  border-radius:30px;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .visit-section{
    flex-direction:column;
  }

  .visit-left,
  .visit-right{
    width:100%;
  }
}

@media(max-width:600px){

  .visit-section{
    padding:60px 30px;
  }

  .visit-left h2{
    font-size:45px;
  }

  .visit-right img{
    height:420px;
  }
}

.drctn{
  background:#6a3f26;
  color:white;

  border:none;

  padding:16px 28px;

  border-radius:10px;

  cursor:pointer;
  active{
    transform:scale(0.98);
    color:#110a05;
  }
}