* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

:root {

  --charcoal: #353333;
  --pink: #f5b7d2;
  --brown: rgb(187, 125, 66);
  --white: #fffdd0;


  --black: #000000;
  --blush: #F8C8DC;
  --rose: #E75480;
}

html,
body {
  background: var(--black);
  width: 100%;
}

/* 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;
}
.brand{
  align-items: left;
}
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);
}

/* 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(--white);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.h7 {
  color: var(--brown);
  font-size: 24px;
  margin-top: 30px;
}
.menu-card p {
  color: #0b0b0b;
  margin-top: 10px;
  opacity: 0.9;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(245, 234, 239, 0.5);
}
.menu-card img {
  width: 100%;
  height: 450px;
  margin-bottom: 10px;
  border-radius: 20px;
  object-fit: cover;
}

.h3 .menu-text {
  color: var(--brown);
  font-size: 22px;
}

.menu-card a {
  display: inline-block;
  padding: 10px 16px;
  background: var(--pink);
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* SECTION */
section {
  margin: 80px auto;
  padding: 0 20px;
}

section h2 {
  color: var(--pink);
  font-size: 36px;
  margin-bottom: 10px;
}

section p {
  opacity: 0.9;
  margin-bottom: 20px;
}

#breads,
#platters,
#cakes,
#mocktails,
#cookies {
  max-width: 1100px;
}

label {
  display: block;
  margin-top: 20px;
  color: var(--pink);
}


button {
  margin-top: 30px;
  padding: 14px;
  width: 100%;
  background: var(--pink);
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  transform: scale(0.8);
  transition: transform 0.3s;
}

#lightbox.show img {
  transform: scale(1);
}

#lightbox span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

/* Feedback page */
form {
  background: #111111;
  padding: 25px;
  margin-top: 30px;
  width: 900px;
  margin-right: 30px;
  margin-left: 90px;
  margin-bottom: 5px;
}

.contact-info {
  width: 900px;
  margin-top: 30px;
  margin-left: 100px;
}
.contact-info p{
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-width: 1px;
  border-color: #aaa;
}

.info-item i {
  color: var(--pink);
  font-size: 22px;
  margin-top: 4px;
  margin-left: 10px;
}

.info-item h4 {
  display: flex;
  gap: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--white);
}

.info-item p {
  color: #c9a87a;
  line-height: 1.6;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 50px auto;
  max-width: 800px;
}

.contact-form h2 {
  color: var(--pink);
  font-family: 'Allura';
  font-size: 36px;
  margin-bottom: 8px;
}

/* FORM ELEMENTS */
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  padding: 14px;
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  background: var(--pink);
  border: none;
  padding: 16px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

/* RESPONSIVE */
@media(max-width:600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 32px;
    padding: 10px;
  }

  .menu-card img {
    height: 120px;
  }
}
@media (max-width: 768px) {
  .about-split {
    flex-direction: column;
  }
}


.contact-form {
  display: flex;
  margin-left: 0 auto;
  align-items: flex-start;
  background-color: black;
  flex: 2; /* bigger */
}

/* RIGHT SIDE */

.pic-box {
  background: #0b0b0b;
  padding: 15px;
  text-align: center;
  color: white;
  width: 100%;
  height: 500px;
  overflow: hidden;
  transition: 0.3s ease;
}

.pic-box.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

.pic-box:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.pic-box video {
  width: 100%;
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 768px) {

  .pic-section {
    position: sticky;
    flex: 1;
    top: 120px;
  }
}
/* SEARCHPAGE */

.back {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px var(--pink);
  border-radius: 25px;
  width: 100%;
  margin: 0;
  background-color: var(--black);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.back:hover {
  box-shadow: 0 0 10px var(--white);
}

.back i{
  font-size: 19px;
  cursor: pointer;
  margin: 0;
  color: var(--pink);
}

.back input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
}

.search-wrapper i {
  font-size: 16px;
  color: var(--pink);
  cursor: pointer;
  margin-left: 10px;
}

.search-wrapper {
  display: flex;
  align-items: center;
  width: 30%;
  /* collapsed width */
  background-color: var(--white);
  border: 1px solid;
  border-radius: 25px;
  padding: 10px 15px;
  cursor: pointer;
  transition: box-shadow 0.3s;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 10px var(--white);
}

.search-wrapper:hover {
  box-shadow: 0 0 10px var(--white)
    /* expanded width */
}

.search-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
}

/* ABout Us */
/* Ads */
.ad-box {
  background: #0b0b0b;
  text-align: center;
  color: white;
  width: 100%;
  overflow: hidden;
  transition: 0.3s ease;
}

.ad-box.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
  height: 600px;
}

.ad-box p {
  margin-top: 10px;
  font-size: 15px;
  text-align: center;
}

.ad-box video {
  width: 100%;

}
@media (max-width: 768px) {
  .contact-form {
    flex-direction: column;
  }

  .ads-section {
    position: sticky;
    flex: 1;
  }
}

.about h3 {
  font-family: "Allura";
  color: var(--brown);
  font-size: 30px;
  justify-content: center;
  margin-left: 12px;
}
.values {
  text-align: center;
}

.values h3 {
  color: var(--pink);
  font-size: 36px;
  margin-bottom: 40px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: #111111;
  padding: 25px;
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(245, 183, 210, 0.2);
}

.value-card h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--white);
  font-size: 14px;
  opacity: 0.9;
}
.brown p{
  color: var(--brown)
}
.about {
  padding: 40px;
  background: #111111;
  color: var(--white);
  line-height: 1.8;
}

.about h4 {
  color: var(--pink);
  font-size: 33px;

  text-align: center;
}

.about h5 {
  color: var(--brown);
  margin-top: 20px;
  font-size: 18px;
}

.about p {
  margin-top: 10px;
  opacity: 0.9;
}
.about-split {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-text {
  flex: 1;
  color: var(--white);
}

.about-text h4 {
  color: var(--pink);
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

.about-text p {
  line-height: 1.8;
  opacity: 0.9;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}



/* Mocktails*/

h3 {
  font-family: "Allura";
  color: var(--brown);
  font-size: 30px;
}
.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--pink), #f4a896);
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 183, 210, 0.4);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split-section,
.card {
  animation: fadeUp 0.8s ease forwards;
}
.card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  width: 260px;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}
.split-text {
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);

  /* THIS creates the overlap */
  margin-left: -80px;
}
.split-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 120px 20px;
  max-width: 1100px;
  margin: auto;
}

/* IMAGE SIDE */
.split-image {
  flex: 1;
  background: linear-gradient(135deg, #f5b7d2, #f4a896);
  padding: 40px;
  border-radius: 30px;
  position: relative;
}

.split-image img {
  width: 100%;
  border-radius: 20px;
  transform: scale(1.05);
  transition: 0.4s ease;
}

.split-image:hover img {
  transform: scale(1.1);
}

/* TEXT SIDE */
.split-text {
  flex: 1;
  color: white;
  position: relative;
  z-index: 2;
}

.split-text h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--pink);
  font-family: 'Great Vibes', cursive;
}

.split-text p {
  margin-bottom: 25px;
  color: #ccc;
  line-height: 1.6;
}
/*888*/
/* SPLIT SECTION (like your inspo) */
.split-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}

/* IMAGE SIDE */
.split-image {
  flex: 1;
  background: #f4a896; /* soft peach like your inspo */
  padding: 30px;
  border-radius: 20px;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
}

/* TEXT SIDE */
.split-text {
  flex: 1;
  color: white;
}

.split-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--pink);
}

.split-text p {
  margin-bottom: 20px;
  color: #ccc;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 12px 20px;
  background: var(--pink);
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* CARD SECTION (bottom boxes) */
.card-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 60px 20px;
}

.card {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  width: 250px;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .split-section {
    flex-direction: column;
  }

  .card-section {
    flex-direction: column;
    align-items: center;
  }
}

/* ================= FOOTER ================= */
/* FOOTER */
.footer {
  background: #111111;
  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;
  }
}