@font-face {
  font-family: 'Quidity';
  src: url('fonts/Quidity.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* RESET */

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

/* GENERAL */

body {
  font-family: Arial, sans-serif;
  color: #333;
}

/* HEADER */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

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

  padding: 18px 60px;

  background-color: #f7f3ef;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  z-index: 1000;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 72px;
  height: auto;
}

.logo-text {
  height: 51px;
  width: auto;
}

/* NAVIGATION */

nav {
  display: flex;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: #1f4f63;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.7;
}

/* ========================================
   HERO
======================================== */

.hero {

    position: relative;

    min-height: 640px;

    display: flex;
    align-items: center;

    padding: 150px 10% 90px;

background-image:
linear-gradient(
    90deg,
    rgba(247,243,239,.90) 0%,
    rgba(247,243,239,.82) 35%,
    rgba(247,243,239,.42) 62%,
    rgba(247,243,239,0) 82%
),
linear-gradient(
    180deg,
    rgba(247,243,239,.06) 0%,
    rgba(247,243,239,0) 28%
),
url("images/hero.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.overlay {

    position: absolute;
    inset: 0;

}

.hero-content {

    position: relative;
    z-index: 2;

    max-width: 580px;

}

.hero-content h1 {

    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 500;

    color: #0f4d63;

    margin-bottom: 22px;

}

.hero-content p {

    font-size: 1.18rem;
    line-height: 1.8;

    color: #5f5f5f;

    margin-bottom: 42px;

}


/* ========================================
   HERO BUTTONS
======================================== */

.hero-buttons {

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

}

.btn-primary,
.btn-secondary {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    padding: 16px 34px;

    border-radius: 10px;

    font-size: 1rem;
    font-weight: 600;

    transition: .25s ease;

}

.btn-primary {

    background: #0f4d63;

    color: #ffffff;

}

.btn-primary:hover {

    background: #165d77;

    transform: translateY(-2px);

}

.btn-secondary {

    border: 2px solid #0f4d63;

    color: #0f4d63;

    background: transparent;

}

.btn-secondary:hover {

    background: #0f4d63;

    color: #ffffff;

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .hero {

        min-height: 540px;

        padding: 120px 8% 70px;

        background-position: 68% center;

    }

    .hero-content {

        max-width: 100%;

    }

    .hero-content h1 {

        font-size: 2.8rem;

    }

    .hero-content p {

        font-size: 1.05rem;

    }

    .hero-buttons {

        flex-direction: column;
        align-items: flex-start;

    }

}

.btn-primary,
.btn-secondary {

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 8px;

    font-weight: 600;

    transition: .25s ease;

}

.btn-primary {

    background: #0f4d63;

    color: #ffffff;

}

.btn-primary:hover {

    background: #165d77;

    transform: translateY(-2px);

}

.btn-secondary {

    border: 2px solid rgba(255,255,255,.9);

    color: #0f4d63;

    background: transparent;

}

.btn-secondary:hover {

    background: #ffffff;

    color: #0f4d63;

    transform: translateY(-2px);

}

.footer {
  background: #0f4d63;
  color: #f7f3ef;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  padding: 70px 8%;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-copy {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h3,
.footer-social h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #f7f3ef;
}

.footer a {
  color: #f7f3ef;
  text-decoration: none;
  opacity: 0.85;
}

.footer a:hover {
  opacity: 1;
}

/* LOCATIONS SECTION */

.locations-section {
    background: #ffffff;
    border-top: 1px solid #ece7e2;
}

.locations-section {
  background: #fefdfb;
  padding: 40px 8% 50px;
}

.locations-header {
  text-align: center;
  margin-bottom: 30px;
}

.locations-header h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 6px;
}

.locations-header p {
  font-size: 0.95rem;
  color: #777;
  letter-spacing: 0.2px;
}

.locations-grid {
  max-width: 900px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.location-card {
  position: relative;
}

.location-card:first-child::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -40px;
  width: 1px;
  height: 260px;
  background: rgba(15, 77, 99, 0.08);
}

.location-card h3 {
  font-family: 'Quidity';
    src: url('fonts/Quidity.ttf') format('truetype');
  font-size: 2.2rem;
  font-weight: normal;
  color: #0f4d63;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.location-address {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
}

.location-hours {
  font-size: 1rem;
  color: #0f4d63;
  line-height: 2;
  margin-bottom: 20px;
}

.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #0f4d63;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;

  transition: all 0.3s ease;
}

.location-card a::after {
  content: "→";
  transition: transform 0.3s ease;
}

.location-card a:hover::after {
  transform: translateX(4px);
}

.location-card a:hover {
  opacity: 0.75;
}

/* MOBILE */

@media (max-width: 768px) {

  .locations-section {
    padding: 60px 8%;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .location-card {
    text-align: center;
  }

  .location-card:first-child::after {
    display: none;
  }

  .location-card {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(15, 77, 99, 0.08);
  }

  .location-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* MOBILE */

@media (max-width: 900px) {

  .navbar {
    padding: 18px 24px;
  }

  nav {
    gap: 18px;
  }

  nav a {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  }
  
  @media (max-width: 768px) {

  .footer {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

}

/* ========================================
   MENU PAGE
======================================== */

.menu-page {
  background: #fefdfb;
  padding: 140px 8% 100px;
}

.menu-content {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 80px;
  align-items: center;
}

.menu-text h1 {
  color: #0f4d63;
  font-size: 4.4rem;
  font-weight: 500;
  
  margin-bottom: 24px;
}

.menu-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 600px;
}

.menu-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-btn {
  display: inline-block;

  background: #0f4d63;
  color: white;

  text-decoration: none;

  padding: 14px 28px;

  border-radius: 30px;

  transition: all 0.3s ease;
}

.menu-btn:hover {
  opacity: 0.9;
}

.menu-image img {
  width: 100%;
  height: 550px;

  object-fit: cover;

  border-radius: 12px;
}

/* ========================================
   COFFEE BEANS PAGE
======================================== */

/* HERO */

/* ========================================
   COFFEE HERO
======================================== */

.coffee-hero {

    min-height: 640px;

    display: flex;
    align-items: center;

    padding: 150px 8% 90px;

   background-image:
linear-gradient(
    90deg,
    rgba(247,243,239,.90) 0%,
    rgba(247,243,239,.82) 35%,
    rgba(247,243,239,.42) 62%,
    rgba(247,243,239,0) 82%
),
linear-gradient(
    180deg,
    rgba(247,243,239,.06) 0%,
    rgba(247,243,239,0) 28%
),
url("images/terrace_coffee.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coffee-hero-content {

    max-width: 560px;
  }

.about-hero h1 {
  
  font-size: 4.3rem;
  color: #0f4d63;
  font-weight: 500;
  margin-bottom: 10px;

}

/* ========================================
   COFFEE INFO
======================================== */

.coffee-info {

    max-width: 850px;

    margin: 0 auto 60px;

    padding: 24px 34px;

    background: #fcfaf7;

    border: 1px solid #ece7e2;

    border-radius: 16px;
}

.coffee-info-item {

    text-align: center;
}

.coffee-info strong {

    display: block;

    color: #0f4d63;

    font-size: 1.1rem;

    font-weight: 600;

    margin-bottom: 10px;
}

.coffee-info p {

    margin: 0;

    color: #666;

    font-size: 1rem;

    line-height: 1.8;
}

.coffee-text h1 {

    font-size: 4.4rem;

    color: #0f4d63;

    font-weight: 500;

    margin-bottom: 10px;
}

.coffee-script {

    display: block;

    font-family: "Quidity", serif;

    font-size: 2.8rem;

    color: #2b6880;

    line-height: 1;

    margin-bottom: 38px;
}

.coffee-text p {

    max-width: 520px;

    color: #5f5f5f;

    font-size: 1.12rem;

    line-height: 1.9;

    margin-bottom: 24px;
}

/* SECTION TITLE */

.coffee-current {
    background: #ffffff;
    padding: 100px 8%;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading h2 {
    font-size: 2.7rem;
    color: #0f4d63;
    margin-bottom: 18px;
    font-weight: 500;
}

.section-heading p {
    color: #777;
    line-height: 1.7;
}

/* GRID */

.coffee-grid {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

/* CARD */

.coffee-card {
    background: #fcfaf7;
    border: 1px solid #ece7e2;
    border-radius: 18px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.coffee-card-info {
    padding: 46px;
}

.coffee-label {
    display: inline-block;
    margin-bottom: 22px;

    color: #1f5f73;

    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.coffee-card h3 {
    color: #0f4d63;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 22px;
}

.coffee-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

.current-roaster {
    margin-bottom: 28px;
}

.current-roaster small {
    display: block;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.current-roaster strong {
    display: block;
    color: #0f4d63;
    margin-bottom: 4px;
}

.current-roaster span {
    color: #666;
}

.coffee-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 34px;
    color: #666;
    font-size: .95rem;
}

.coffee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   COLLECTION
======================================== */

.coffee-collection {

    background: #fcfaf7;

    text-align: center;

    padding: 70px 8%;

    border-top: 1px solid #ece7e2;
    border-bottom: 1px solid #ece7e2;
}

.coffee-collection h3 {

    color: #0f4d63;

    font-size: 2rem;

    font-weight: 500;

    margin-bottom: 22px;
}

.coffee-collection p {

    max-width: 700px;

    margin: 0 auto 16px;

    color: #666;

    line-height: 1.8;

    font-size: 1.05rem;
}

.coffee-collection p:last-child {
    margin-bottom: 0;
}

/* NOTE */

.coffee-note {
    background: #ffffff;
    padding: 90px 8% 120px;
    text-align: center;
}

.coffee-note h3 {
    color: #0f4d63;
    font-size: 2rem;
    margin-bottom: 20px;
}

.coffee-note p {
    max-width: 760px;
    margin: 0 auto;

    color: #666;
    line-height: 1.9;
}

/* MOBILE */

@media (max-width: 900px) {

  .menu-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .menu-text {
    text-align: center;
  }

  .menu-text p {
    max-width: 100%;
  }

  .menu-buttons {
    justify-content: center;
  }

  .menu-image img {
    height: 450px;
  }

}

/* ========================================
   CAKES PAGE
======================================== */

/* HERO */

.cakes-hero{

    min-height:640px;

    display:flex;
    align-items:center;

    padding:150px 8% 90px;

background-image:
linear-gradient(
    90deg,
    rgba(247,243,239,.90) 0%,
    rgba(247,243,239,.68) 32%,
    rgba(247,243,239,.12) 58%,
    rgba(247,243,239,.02) 78%,
    rgba(247,243,239,0) 92%
),
linear-gradient(
    180deg,
    rgba(247,243,239,.06) 0%,
    rgba(247,243,239,0) 28%
),
url("images/hero_cakes.jpeg");

    background-size:cover;
    background-position:top;
    background-repeat:no-repeat;
}

.cakes-hero-content{

    max-width:560px;
}

.cakes-hero h1{

    font-size:4.3rem;
    color:#0f4d63;
    font-weight:500;

    margin-bottom:10px;
}

.cakes-script{

    display:block;

    font-family:"Quidity", serif;

    font-size:2.7rem;

    color:#2b6880;

    margin-bottom:34px;
}

.cakes-hero p{

    color:#5f5f5f;

    font-size:1.12rem;

    line-height:1.9;

    margin-bottom:22px;

    max-width:520px;
}


/* COLLECTION */

.cakes-selection{

    background:#fcfaf7;

    padding:90px 8%;
}

.cakes-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

    margin-top:60px;
}


/* LEFT */

.cake-list{

    display:flex;

    flex-direction:column;
}

.cake-option{

    width:100%;

    background:none;

    border:none;

    border-bottom:1px solid #e8e3dc;

    padding:24px 0;

    text-align:left;

    cursor:pointer;

    font-size:1.25rem;

    color:#444;

    transition:.3s;
}

.cake-option:hover{

    color:#0f4d63;

    padding-left:12px;
}

.cake-option.active{

    color:#0f4d63;

    font-weight:600;
}


/* RIGHT */

.cake-details{

    background:white;

    padding:50px;

    border-radius:22px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.cake-details h3{

    color:#0f4d63;

    font-size:2rem;

    margin-bottom:18px;
}

.cake-details p{

    color:#666;

    line-height:1.8;

    margin-bottom:18px;
}

.cake-size{

    color:#888;

    font-size:.95rem;
}

.cake-price{

    font-size:2.5rem;

    color:#0f4d63;

    margin:35px 0;
}


/* HOUSE */

.house-section{

    padding:90px 8%;

    text-align:center;

    background:white;
}

.house-content{

    max-width:700px;

    margin:auto;
}

.house-logo{

    display:block;

    width:260px;

    max-width:90%;

    margin:0 auto 32px;

    transition:.3s;

}

.house-logo:hover{

    transform:scale(1.03);

}

.house-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:36px;
}


/* ORDER */

.cakes-info{

    background:#fcfaf7;

    padding:80px 8%;

    text-align:center;
}

.cakes-info h3{

    color:#0f4d63;

    margin-bottom:18px;

    font-size:2rem;
}

.cakes-info p{

    color:#666;

    line-height:1.8;

    max-width:720px;

    margin:0 auto 14px;
}


/* MOBILE */

@media (max-width:900px){

.cakes-wrapper{

    grid-template-columns:1fr;

    gap:40px;
}

.cakes-hero h1{

    font-size:3rem;
}

.cakes-script{

    font-size:2rem;
}

.cake-details{

    padding:36px;
}

}

/* ========================================
   ABOUT PAGE
======================================== */


/* HERO */

.about-hero {

    min-height: 640px;

    display: flex;
    align-items: center;

    padding: 150px 8% 90px;
  
background-image:
linear-gradient(
    90deg,
    rgba(247,243,239,.90) 0%,
    rgba(247,243,239,.68) 32%,
    rgba(247,243,239,.12) 58%,
    rgba(247,243,239,.02) 78%,
    rgba(247,243,239,0) 92%
),
linear-gradient(
    180deg,
    rgba(247,243,239,.06) 0%,
    rgba(247,243,239,0) 28%
),
url("images/hero_about.png");
  
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.about-hero-content {

    max-width: 560px;
}

.about-hero h1 {

    font-size: 4.3rem;

    color: #0f4d63;

    font-weight: 500;

    margin-bottom: 10px;
}

.about-script {

    display: block;

    font-family: "Quidity", serif;

    font-size: 2.7rem;

    color: #2b6880;

    line-height: 1;

    margin-bottom: 34px;
}

.about-hero p {

    max-width: 520px;

    color: #5f5f5f;

    font-size: 1.12rem;

    line-height: 1.9;
}


/* ========================================
   OUR STORY
======================================== */

.about-story {

    background: #ffffff;

    padding: 110px 8%;

}

.about-text {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}

.section-label {

    display: inline-block;

    font-size: .9rem;

    font-weight: 600;

    letter-spacing: .14em;

    text-transform: uppercase;

    color: #7c7c7c;

    margin-bottom: 22px;

}

.about-text h2 {

    max-width: 900px;

    margin: 0 auto 34px;

    font-size: 3.25rem;

    line-height: 1.18;

    font-weight: 500;

    color: #0f4d63;

}

.about-text p {

    max-width: 690px;

    margin: 0 auto 24px;

    font-size: 1.08rem;

    line-height: 1.9;

    color: #666;

}

.about-text p:last-child {

    margin-bottom: 0;

}



/* ========================================
   VALUES
======================================== */

.about-values {

    background: #fcfaf7;

    padding: 110px 8% 120px;

}

.section-heading {

    max-width: 700px;

    margin: 0 auto 65px;

    text-align: center;

}

.section-heading h2 {

    font-size: 3rem;

    font-weight: 500;

    color: #0f4d63;

    margin-bottom: 18px;

}

.section-heading p {

    color: #666;

    font-size: 1.08rem;

    line-height: 1.8;

}

.values-grid {

    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 34px;

}

.value-card {

    background: #ffffff;

    border: 1px solid #ece7e2;

    border-radius: 22px;

    padding: 40px 36px;

    transition: all .25s ease;

}

.value-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(0,0,0,.06);

}

.value-card h3 {

    color: #0f4d63;

    font-size: 1.45rem;

    font-weight: 500;

    margin-bottom: 18px;

}

.value-card p {

    margin: 0;

    color: #666;

    line-height: 1.9;

    font-size: 1rem;

}



/* ========================================
   MOBILE
======================================== */

@media (max-width: 1000px) {

    .about-text h2 {

        font-size: 2.6rem;

    }

    .values-grid {

        grid-template-columns: 1fr;

        max-width: 700px;

    }

}

@media (max-width: 768px) {

    .about-story,
    .about-values {

        padding: 80px 8%;

    }

    .about-text h2 {

        font-size: 2.1rem;

    }

    .section-heading h2 {

        font-size: 2.2rem;

    }

    .value-card {

        padding: 32px 28px;

    }

}

/* ========================================
   CONTACT HERO
======================================== */

.contact-hero {

    min-height: 640px;

    display: flex;
    align-items: center;

    padding: 150px 8% 90px;

background-image:
linear-gradient(
    90deg,
    rgba(247,243,239,.90) 0%,
    rgba(247,243,239,.68) 32%,
    rgba(247,243,239,.12) 58%,
    rgba(247,243,239,.02) 78%,
    rgba(247,243,239,0) 92%
),
linear-gradient(
    180deg,
    rgba(247,243,239,.06) 0%,
    rgba(247,243,239,0) 28%
),
url("images/hero_contact.jpeg");

    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;

}

.contact-hero-content{

    max-width:560px;

}

.contact-hero h1{

    font-size:4.3rem;

    font-weight:500;

    color:#0f4d63;

    margin-bottom:10px;

}

.contact-script{

    display:block;

    font-family:"Quidity", serif;

    font-size:2.7rem;

    color:#2b6880;

    line-height:1;

    margin-bottom:34px;

}

.contact-hero p{

    max-width:520px;

    color:#5f5f5f;

    font-size:1.12rem;

    line-height:1.9;

}



/* ========================================
   CONTACT INFO
======================================== */

.contact-info{

    padding:110px 8%;

    background:#ffffff;

}

.contact-grid{

    max-width:1100px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.contact-card{

    background:#fcfaf7;

    border:1px solid #ece7e2;

    border-radius:22px;

    padding:40px 36px;

    transition:.25s;

}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.06);

}

.contact-card h3{

    color:#0f4d63;

    font-size:1.4rem;

    font-weight:500;

    margin-bottom:22px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.contact-card a{

    display:block;

    color:#0f4d63;

    font-weight:500;

    text-decoration:none;

    margin-bottom:12px;

    transition:.2s;

}

.contact-card a:hover{

    opacity:.7;

}



/* ========================================
   FAQ
======================================== */

.faq{

    background:#fcfaf7;

    padding:110px 8%;

}

.faq-list{

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#ffffff;

    border:1px solid #ece7e2;

    border-radius:18px;

    padding:34px 38px;

    margin-bottom:22px;

}

.faq-item:last-child{

    margin-bottom:0;

}

.faq-item h3{

    color:#0f4d63;

    font-size:1.35rem;

    font-weight:500;

    margin-bottom:16px;

}

.faq-item p{

    color:#666;

    line-height:1.9;

}



/* ========================================
   FOLLOW US
======================================== */

.follow-us{

    padding:110px 8% 120px;

    background:#ffffff;

}

.section-heading{

    max-width:700px;

    margin:0 auto;

    text-align:center;

}

.section-heading h2{

    font-size:3rem;

    font-weight:500;

    color:#0f4d63;

    margin-bottom:18px;

}

.section-heading p{

    color:#666;

    font-size:1.08rem;

    line-height:1.8;

}

.social-links{

    display:flex;

    justify-content:center;

    gap:28px;

    margin-top:60px;

    flex-wrap:wrap;

}

.social-links a{

    padding:18px 34px;

    background:#0f4d63;

    color:#fff;

    text-decoration:none;

    border-radius:999px;

    font-weight:500;

    transition:.25s;

}

.social-links a:hover{

    transform:translateY(-3px);

    background:#144f67;

}

/* ========================================
   COFFEE ORDER MODAL
======================================== */

.coffee-modal{

    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    overflow-y:auto;

    padding:40px 24px;

    background:rgba(0,0,0,.45);

    z-index:5000;

}

.coffee-modal.active{

    display:flex;

}

.coffee-modal-box{

    position:relative;

    width:100%;
    max-width:520px;

    max-height:calc(100vh - 80px);

    overflow-y:auto;

    background:#fcfaf7;

    border-radius:22px;

    padding:42px;

    box-shadow:0 25px 70px rgba(0,0,0,.15);

}

.coffee-modal h2{

    color:#0f4d63;

    font-size:2rem;

    font-weight:500;

    margin-bottom:10px;

}

.modal-type{

    color:#666;

    font-size:1rem;

    margin-bottom:8px;

}

.modal-price{

    color:#0f4d63;

    font-size:2.4rem;

    font-weight:500;

    margin-bottom:34px;

}

.coffee-modal-close{

    position:absolute;

    top:18px;
    right:22px;

    border:none;
    background:none;

    cursor:pointer;

    font-size:2rem;

    color:#999;

    transition:.2s;

}

.coffee-modal-close:hover{

    color:#0f4d63;

}

#coffeeOrderForm{

    display:flex;

    flex-direction:column;

    gap:20px;

}

#coffeeOrderForm label{

    display:flex;

    flex-direction:column;

    gap:8px;

    color:#0f4d63;

    font-size:.95rem;

    font-weight:600;

}

#coffeeOrderForm input,
#coffeeOrderForm select{

    width:100%;

    padding:15px 16px;

    border:1px solid #d9d9d9;

    border-radius:10px;

    background:#fff;

    font-size:1rem;

}

#coffeeOrderForm .menu-btn{

    width:100%;

    border:none;

    cursor:pointer;

    margin-top:12px;

}

.modal-note{

    margin-top:24px;

    text-align:center;

    color:#777;

    font-size:.92rem;

    line-height:1.6;

}


/* ========================================
   SUCCESS MODAL
======================================== */

.success-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.35);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.25s;

    z-index:3000;

}

.success-modal.active{

    opacity:1;

    visibility:visible;

}

.success-box{

    width:90%;

    max-width:470px;

    background:#fcfaf7;

    border-radius:16px;

    padding:50px 42px;

    text-align:center;

    box-shadow:0 25px 70px rgba(0,0,0,.18);

}

.success-icon{

    width:70px;

    height:70px;

    margin:0 auto 24px;

    border-radius:50%;

    background:#1f5f73;

    color:#fcfaf7;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    font-weight:600;

}

.success-box h2{

    font-size:2.1rem;

    color:#1f5f73;

    margin-bottom:18px;

}

.success-box p{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.success-box .menu-btn{

    width:100%;

    justify-content:center;

}

/* ========================================
   CAKE MODAL
======================================== */

.cake-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    display:none;

    justify-content:center;

    align-items:center;

    padding:30px;

    z-index:9999;

}

.cake-modal.active{

    display:flex;

}

.cake-modal-box{

    background:#fff;

    width:100%;

    max-width:520px;

    border-radius:22px;

    padding:40px;

    position:relative;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.cake-modal-close{

    position:absolute;

    top:18px;

    right:20px;

    background:none;

    border:none;

    font-size:30px;

    cursor:pointer;

    color:#666;

}

#cakeOrderForm{

    display:flex;

    flex-direction:column;

    gap:18px;

}

#cakeOrderForm label{

    display:flex;

    flex-direction:column;

    gap:8px;

    font-weight:500;

    color:#444;

}

#cakeOrderForm input,
#cakeOrderForm select{

    padding:14px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:1rem;

}
 
