/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

/* COLORS */
:root {
  --black: #000000;
  --charcoal: #1c1c1c;
  --pink: #f5b7d2;
  --brown: rgb(187, 125, 66);
  --white: #f1f1e9;
}

body {
  background: var(--black);
  color: white;
}

/* TOP NAV */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  display: flex; 
  align-items: center;
  padding: 15px 15px;
  z-index: 200;
  border-bottom: 1px solid #222;
}

.site-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

/* Dropdown container */
.line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  margin: 30px 0;
}
.menu-dropdown {
  position: relative;
}

.menu-dropdown a {
  text-decoration: none;
  color: var(--pink);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: black;
  padding: 0;
  margin: 0;
  min-width: 180px;
  z-index: 999;
  list-style: none;
}

.dropdown li a:hover{
  text-decoration: underline;
}
 
.menu-dropdown:hover .dropdown {
  display: block;
}

/* Dropdown links */
.dropdown li a {
  color: var(--pink);
  text-decoration: none;
  display: block;
  padding: 10px;
}

.dropdown li.brown a {
  color: var(--brown);
  text-decoration: none;
  display: block;
  padding: 10px;
}

.dropdown li.brown a:hover{
  text-decoration: underline;
}
 
/* Show dropdown on hover */
.menu-dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger lines + text */
.menu-icon {
  display: flex;
  /* horizontal layout */
  align-items: center;
  /* vertically center lines and text */
  gap: 6px;
  /* space between lines and text */
  cursor: pointer;
}

/* Hamburger lines stacked vertically */
.hamburger span {
  /* first 3 spans */
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--pink);
  border-radius: 2px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Menu text */
.menu-icon .menu-text {
  font-size: 20px;
  color: var(--pink);
  font-weight: 600;
  white-space: nowrap;
  /* prevents wrapping */
}

a {
  text-decoration: none;
}

h1.brand {
  font-family: 'Allura';
  font-size: 40px;
  align-items: center;
  color: var(--white);
  text-align: center;
  width: 300px;
  max-width: 90%;
  margin-left: 400px;
  cursor: pointer;
}

h1.brand span {
  font-size: 40px;
  font-family: 'Allura';
  align-items: center;
  color: var(--pink);
}

.nav-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left:auto;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

nav a:hover {
  color: var(--pink);
}


.search-bar, .cart, .heart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px var(--pink);
  border-radius: 25px;
  width: auto;
  margin: 0;
  background-color: var(--black);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.search-bar i, .heart i, .cart i{
  font-size: 19px;
  cursor: pointer;
  margin: 0;
  color: var(--pink);
  align-items: center;
}
.cart:hover, .heart:hover, .search-bar:hover {
  box-shadow: 0 0 10px var(--white);
}

/* HERO */
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("homepic.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-family: 'Roboto', sans-serif;
  color: var(--pink);
  font-size: 48px;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.hero p {
  color: var(--white);
  max-width: 700px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 18px;
}

/* MENU BOXES */
.menu-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 100px auto 50px;
  padding: 0 20px;
}

.menu-card {
  background: var(--pink);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* ================= HERO ================= */
.herobread {
  margin-top: 65px; /* FIXES HEADER GAP */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
              url("pics/homepageFB.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}
.herobread h2 {
  font-size: 42px;
  color: var(--pink);
}

.herobread p {
  color: #ddd;
}

.herocookies{
  margin-top: 65px; /* FIXES HEADER GAP */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.2)),
              url("pics/about.png");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}
.herocookies h2 {
  font-size: 42px;
  color: var(--pink);
}

.herocookies p {
  color: #ddd;
}
.heromock {
  margin-top: 65px; /* FIXES HEADER GAP */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4)),
              url("pics/Cocktails.png");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}
.heromock h2 {
  font-size: 42px;
  color: var(--pink);
}

.heromock p {
  color: #ddd;
}
.herocake {
  margin-top: 65px; /* FIXES HEADER GAP */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4)),
              url("pics/cakephotoFB.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}
.herocake h2 {
  font-size: 42px;
  color: var(--pink);
}

.herocake p {
  color: #ddd;
}
.heroplatter {
  margin-top: 65px; /* FIXES HEADER GAP */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4)),
              url("pics/everything.png");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}
.heroplatter h2 {
  font-size: 42px;
  color: var(--pink);
}

.heroplatter p {
  color: #ddd;
}


/* ================= SPLIT SECTION ================= */

/* TEXT */
.split-text {
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.split-text h2 {
  font-size: 18px;
  color: var(--brown);
  font-family: 'allura';
  margin-bottom: 8px;
}

.split-text p {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}
/* WRAPPER = controls 2 cards side by side */
.split-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns*/
  gap: 30px;
  padding: 80px 40px 40px; /* extra top space for header */
}

/* EACH CARD */
.split-card {
  width: 100% !important;
  background: #1a1a1a;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.split-card:hover {
  transform: translateY(-8px);
   border: 2px solid var(--pink);
}
/* WHEN YOU HOVER THE WHOLE CARD */
.split-card:hover .btn-primary {
  background: black;
  color: var(--pink);
  border: 2px solid var(--pink);
}
/* IMAGE */
.split-image {
  background: linear-gradient(135deg,);
  border-radius: 25px;
}

.split-image img {
  width: 100%;
  object-fit: cover;
  height: 360px;
}
.split-image img:hover {
  transform: scale(1.08);
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 12px 22px;;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background: var(--pink);
  color: var(--black);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 183, 210, 0.4);
}

/* ================= CARDS ================= */
.card-section {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 60px 20px;
}

.card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
}

/* ================= FOOTER ================= */
/* FOOTER */
.footer {
  background: #0b0b0b;
  color: var(--white);
  padding: 20px 10px 10px;
}
.footer-section{
 border-left: 1px solid var(--white);
 padding-left: 20px;
}
.footer-inner > *:not(:first-child) {
  border-left: 0.5px solid rgba(255,255,255,0.2); /* thinner + softer */
  padding-left: 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:  40px;
  align-items: stretch; /* IMPORTANT */
}

  .footer-inner > * {
  padding-top: 10px;
  padding-bottom: 10px;

}

.footer-brand h2 {
  font-family: 'Allura';
  font-size: 30px;
  margin: 0;
}

.footer-brand .pink {
  color: var(--pink);
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.socials a {
  color: var(--pink);
  font-size: 18px;
  text-decoration: none;
}

.footer-section h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #c9a87a;
  max-width: 400px;
  line-height: 1.6;
  font-size: 13px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--pink);
  text-decoration: none;
  font-size: 13px;
}

.footer-section a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
  text-align: center;
  background: var(--black);
}

.footer-bottom p {
  color: #c9a87a;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section {
    border-left: none;
    padding-left: 0;
  }
}

/*extra*/
.split-wrapper > * {
  width: 100%;
}

.split-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .split-text {
    margin-left: 0;
  }

  .card-section {
    flex-direction: column;
    align-items: center;
  }
@media (max-width: 900px) {
  .split-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .split-wrapper {
    grid-template-columns: 1fr;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .split-wrapper {
    grid-template-columns: 1fr;
  }
}
}