html {
   background-image: linear-gradient(
      rgba(0, 0, 0, 0.222),
      rgba(128, 128, 128, 0.331)
    ), url("https://images.unsplash.com/photo-1545048702-79362596cdc9?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8Y2hyaXN0bWFzJTIwYmFja2dyb3VuZHxlbnwwfHwwfHx8MA%3D%3D");
 
}
body {
  border: 4px solid black;
  box-shadow: 2px 2px 14px black;
  font-family: sans-serif;
  margin: 0 auto;
  max-width: 1480px;
}

:root {
  --primary-color: blue; /* Example primary blue */
  --secondary-color: #6c757d; /* Example secondary gray */
  --accent-color: #28a745;
  --text-color: #333;
}

.headers {
  background-color: var(--primary-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
  font-size: clamp(54pt, 6vh, 87pt);
  margin: 3rem 0;
  text-align: center;
  text-shadow: 2px 2px 7px black;
  padding: 10px;
  z-index: 1000;
}

/* Main */
 * {
  box-sizing: border-box;
}

#logo {
  background-color: var(--primary-color);
  border: 2px solid #fff;
  height: 100px;
  width: 100px;
  
}

/* Hero Section (for context) */
.hero-section {
  align-items: center;
  height: 100vh;
  background: url("https://images.editor.website/uploads/b/4bc34853677fc1bf3c6899c7d396dd26eaba889bcd8a5e24584c5a5902e02ff5/Screenshot%202025-09-12%20at%209.42.51%E2%80%AFAM_1757692587.png?width=400&optimize=medium")
    no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Hero Section (for context) */
.hero-section {
  height: 100vh;
  background: url("https://images.editor.website/uploads/b/4bc34853677fc1bf3c6899c7d396dd26eaba889bcd8a5e24584c5a5902e02ff5/Screenshot%202025-09-12%20at%209.42.51%E2%80%AFAM_1757692587.png?width=400&optimize=medium")
    no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navbar Styling */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Key for Transparency */
  background-color: blue;
  color: rgb(255, 255, 255); /* Text color for the links */
  padding: 10px 20px;
  width: 100%;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Navigation Links */
.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-links li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s;
}

.navbar-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Hamburger Toggle Button (Mobile) */
.toggle-button {
  position: absolute;
  top: 15px;
  right: 20px;
  display: none; /* Hidden on desktop by default */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

/* --- New Button Styles --- */
.button-container {
  display: flex; /* Makes the buttons side-by-side */
  gap: 20px; /* Space between buttons */
  margin-top: 30px;
  width: 100%;
  max-width: 500px; /* Limit the width of the button container */
  justify-content: center;
}

.hero-button {
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  flex-grow: 1; /* Allows buttons to take up equal space */
}

.primary {
  background-color: #007bff; /* Bright blue */
  color: white;
  border: 2px solid #007bff;
}

.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.primary:hover {
  background-color: #0056b3;
}

.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


/* --- New Button Styles --- */
.button-container {
  display: flex; /* Makes the buttons side-by-side */
  gap: 20px; /* Space between buttons */
  margin-top: 30px;
  width: 100%;
  max-width: 500px; /* Limit the width of the button container */
  justify-content: center;
}

.hero-button {
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  flex-grow: 1; /* Allows buttons to take up equal space */
}

.primary {
  background-color: #007bff; /* Bright blue */
  color: white;
  border: 2px solid #007bff;
}

.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.primary:hover {
  background-color: #0056b3;
}

.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.section--hidden {
  opacity: 0;
  transform: translateY(40px);
}
.section--visible {
  animation: slideInUp 0.5s ease-in-out 1;
}

/* Twelve Days */

.section-one-content {
 background-attachment: fixed;
  background-color: "red";

  margin: 0px auto; /* Centers the div horizontally */
  max-width: 100%;
  height: auto;
  padding: 0px;
  text-align: center; /* Centers the text (heading) */
}

.twelve-days {
  width: 100%;
  margin: 0 auto;
}
video {
  padding: 20px;
  height: auto;
  display: block;
  width: 100%;
  border: 3px solid black;
  box-shadow: 0 2px 12px;
}

#twelve-days-picture {
  height: auto;
  width: 100%;
}


/***************************/
/* SECTION TWO BANNER */

@keyframes bannerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- BANNER LAYOUT & ANIMATION --- */
.section-two-banner {
  align-items: center;
  background-image: linear-gradient(
      rgba(18, 14, 1, 0.342),
      rgba(206, 206, 17, 0.449)
    ),
    url("https://images.unsplash.com/photo-1512389142860-9c449e58a543?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Y2hyaXN0bWFzfGVufDB8fDB8fHww");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 17px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  font-family: Arial, sans-serif;
  height: 500px;
  justify-content: center;
  margin: 20px auto;
  max-width: 1000px;
  padding: 20px 40px;
  position: relative;
  transition: all 0.3s;
  width: 90%;
  animation: bannerFadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.section-two-banner:hover {
  box-shadow: 0px 2px 14px;
}

/* --- IMAGE STYLING, ANIMATION, & BADGE POSITIONING --- */
.section-two-image {
  flex-shrink: 0;
  padding-right: 80px;
  position: relative;
}

.section-two-image img {
  border-radius: 8px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.15);
  height: 150px;
  object-fit: cover;
  width: 250px;
}

/* --- TEXT STYLING --- */
.section-two-header {
  flex-grow: 1;
  text-align: left;
}

.section-two-header h1 {
  color: #fdfdfd;
  font-size: 2em;
  margin-top: 0%;
  margin-bottom: 5px;
}

.section-two-header p {
  color: #ffffff;
  font-size: 1em;
  margin-bottom: 20px;
}

/* --- CTA BUTTON STYLING & 3D EFFECT --- */
.cta-button {
  background-color: #f18808;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: white;
  display: inline-block;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  padding: 12px 25px;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.2s ease;
}

.cta-button:hover {
  background-color: #e05e00;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  transform: rotateX(5deg) rotateY(5deg) scale(1.05);
}

.cta-button:active {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(0) scale(1);
}

/************************************/
/* --------SECTION 3 ------------------*/

.section-three-container {
  align-items: center;
  display: block;
  height: auto;
  justify-content: center;
  position: relative;
}

.section-three-content-container {
  align-items: center;
  background-image: url("https://plus.unsplash.com/premium_photo-1701454736122-14b846cfb3c3?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTd8fGNocmlzdG1hc3xlbnwwfHwwfHx8MA%3D%3D");
  display: flex;
  justify-content: center;
  position: relative;
}

.section-three-content {
  background-color: red;
  color: #fff;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;

  &:hover {
    background-color: green;
  }
}

.section-three-title {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.section-three-img img {
  border-radius: 20px;
  box-shadow: 0px 2px 22px #fff;
  height: auto;
  margin-bottom: 1.8rem;
  transition: all 0.4s ease-in-out;
  width: 70%;

  &:hover {
    box-shadow: 0px 2px 22px 22px red;
  }
}

/************************************/
/* --------SECTION 4 ------------------*/

.section-four-container {
  display: grid;
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(to top, blue, gray);

  img {
    box-shadow: 0 2px 12px;
    border-radius: 15px;
    margin: 20px;
    max-width: 90%;
    height: auto;
    z-index: 0;
  }
}

/* Base styles for the main container */

/************************************/
/* --------SECTION 5 ------------------*/

/* Container Styling */
.delivery-block {
  align-items: center;
  background-color: var(--primary-color);
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  margin: 40px auto;
  overflow: hidden;
  text-shadow: 2px 2px 7px black;
}

/* Image Styling */
.image-container {
  flex: 1;
  min-width: 50%;
}

.image-container img {
  display: block;
  height: auto;
  width: 100%;
}

/* Text Styling */
.delivery-text-container {
  flex: 2;
  padding: 60px;
}

.delivery-text-container h2 {
  color: #ffffff;
  margin-top: 0;
}

.delivery-text-container p {
  color: white;
}

/************************************/
/* --------SECTION 6 ------------------*/

/* Rolling Marquee Banner */

.scroller-texts {
  align-items: center;
  background: linear-gradient(
    45deg,
    #020024 0%,
    #090979 35%,
    #00d4ff 100%
  ); /* Deep blue to light blue */
  display: flex;
  height: 200px;
  justify-content: center;
  margin-bottom: 10px;
}

.fixed-text {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0%;
  text-shadow: 2px 2px 5px black;
}

#scrollerBannerHeader {
  font-size: 2.8rem;
}

.rolling-text {
  border: 3px solid #ddd;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  overflow: hidden;
}

.rolling-text span {
  color: rgb(10, 236, 52);
  position: relative;
  animation: scroll 10s infinite;
}

@keyframes scroll {
  0%,
  100% {
    top: 0;
  }
  7% {
    top: 0;
  }
  14% {
    top: -50px;
  }
  21% {
    top: -50px;
  }
  28% {
    top: -100px;
  }
  35% {
    top: -100px;
  }
  42% {
    top: -150px;
  }
  49% {
    top: -150px;
    opacity: 1;
  }

  56% {
    top: -200px;
  }
  63% {
    top: -200px;
    opacity: 1;
  }
  70% {
    top: -250px;
  }
  77% {
    top: -250px;
  }
  84% {
    top: -300px;
  }
  91% {
    top: -300px;
  }
  98% {
    top: -300px;
    opacity: 0.8;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/************************************/
/* --------SECTION 7 ------------------*/

/* Cafe Plate Lunch Rotater Section */
#rotater-container {
  align-items: center;
  background-color: blue;
  display: flex;
  height: 600px;
  justify-content: center;
  position: relative;
}
#rotater {
  align-items: center;
  background-color: #ffffff;
  border: 4px solid #000300;
  box-shadow: 0 2px 12px rgb(0, 0, 0, 0.3);
  justify-content: center;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  width: 900px;
}

#daily-plate {
  border: 2px solid #333;
  box-shadow: 0px 2px 7px;
  height: 300px;
  margin: 25px 0;
  transition: all 0.5s ease-in-out;
  width: auto;
}

#daily-plate:hover {
  border-radius: 20px;
}

#messageOfDay {
  font-size: 20pt;
  text-shadow: 1px 1px 3px;
}

#rotater p {
  margin-bottom: 20px;
}

.delivery {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

#delivering {
  height: auto;
  margin-top: 0%;
  width: 100%;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* About Page */

body {
  background-color: #f9f9f9;
}

/* --- About Page Styles --- */

.about-container {
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-header {
  background-color: blue;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
  padding: 30px 0;
  text-align: center;
}

.about-header h1 {
  color: #fafafa;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

#oneStopShop {
  color: white;
}

/* 1. Story Section Layout */
.story-section {
  align-items: center;
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  margin-left: 50px;
  padding: 20px 0px;
}

.story-text,
.story-image {
  flex: 1; /* Both items take up equal space */
}

.story-text h2 {
  color: #007bff;
  margin-bottom: 15px;
}

.story-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.story-image img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: auto;
  width: 100%;
}

/* 2. Local Section Layout */
.local-section {
  background-color: #eaf6ff;
  border-radius: 8px;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 50px;
  padding: 30px;
}

.local-card {
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  flex: 1;
  padding: 20px;
}

#local-headers {
  border-bottom: 2px solid #007bff;
  color: #333;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 25px;
}

.local-card ul {
  list-style: none;
  padding: 0;
}

.local-card ul li {
  color: #555;
  padding: 5px 0;
}

/* 3. Stores Section Layout */
.stores-section h2 {
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stores {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  max-width: 250px;
  text-align: center;
}

.stores img {
  border: 4px solid #007bff;
  border-radius: 50%;
  height: 150px;
  margin-bottom: 15px;
  object-fit: contain;
  width: 150px;
}

.stores h4 {
  color: #333;
  margin-bottom: 5px;
}

.stores .address {
  color: #007bff;
  font-style: italic;
}

/************************************/
/* --------FOOTER SECTION ------------------*/

footer {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  justify-content: space-between;
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}

#footer-header {
  padding: 20px;
}
.footer-column {
  flex: 1;
  list-style-type: none;
  margin-bottom: 30px;
  min-width: 250px;
  padding-right: 20px;
}

ul {
  list-style: none;
}

a:link {
  text-decoration: none;
}

footer a:visited {
  color: blue;
}

footer a:hover {
  color: red;
  text-decoration: underline;
}

/* a:active {
  color: red;
  text-decoration: underline;
} */

.copyright {
  font-size: 10px;
}

/*--- NAV Page Responsiveness --- */

@media (min-width: 1300px) {
  .navbar {
    max-width: 1400px;
  }
  .section-four-content-container {
    height: 800px;
  }
  .section-four-content-container::before {
    background-size: 800px;
  }

  .section-four-content-container::after {
    background-size: 800px;
  }

  #healing-strong-cafe {
    max-width: 900px;
  } }

  @media (max-width: 1050px) {
    .section-four-content-container {
      height: 800px;
    }
    .section-four-content-container::before {
      background-size: cover;
    }

    .section-four-content-container::after {
      background-size: cover;
    }

    @media (max-width: 900px) {
      .story-section {
        flex-direction: column;
      }

      .story-image {
        order: -1;
      }
    }
  
  @media (max-width: 768px) {
  
    /* --- Responsive Design with Media Query --- */

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    background-color: blue;
  }

  .toggle-button {
    display: flex; /* Show the hamburger icon on mobile */
  }

  .navbar-links {
    display: none; /* Hide links by default on mobile */
    width: 100%;
  }

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links ul li {
    text-align: center;
  }

  .navbar-links ul li a {
    padding: 10px 0;
  }

  .navbar-links.active {
    display: flex;
  }
  .button-mobile {
    height: 100%;
    width: 100%;
    
  }
  

  /************************************/
  /* --------SECTION 3 ------------------*/

  /************************************/
  /* --------SECTION 4. CAFE ------------------*/

  .section-four-content-container {
    grid-template-columns: 1fr;
  }

  .section-four-content-container::before,
  .section-four-content-container::after {
    width: 100%;
  }

  .section-four-content-container::before {
    height: 50%;
  }

  .section-four-content-container::after {
    height: 50%;
    top: 50%;
  }

  .content-section p,
  .content-section h2 {
    padding: 8px;
  }
  }
  /************************************/
  /* --------SECTION 5. SHOP ONLINE ------------------*/

  .delivery-block {
    flex-direction: column;
    max-width: 95%;
  }

  .image-container,
  .text-container {
    flex: none;
    min-width: 100%;
  }

  .delivery-text-container {
    padding: 20px;
  }

  .local-section {
    flex-direction: column;
    padding: 20px;
  }

  .local-card {
    margin-bottom: 20px;
  }

  .about-container {
    margin: 20px;
    padding: 0px;
  }
}

@media (max-width: 680px) {


  .headers {
    font-size: 2.4rem;
  }

  h1 {
    font-size: 3vh;
    margin: 0 auto;
    position: relative;
    width: 100%;
    text-align: center;
  }

  h3 {
    padding-top: 20px;
  }

  /************************************/
  /* --------SECTION 1. ------------------*/

  .twelve-days {
    height: 200px;
  }
  video {
    padding: 0;
   
  }
  /************************************/
  /* --------SECTION 2. ------------------*/

  .section-two-banner {
    flex-direction: column;
    padding: 30px 30px;
    text-align: center;
  }

  .section-two-image {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .section-two-header {
    text-align: center;
  }

  .section-two-header h1 {
    font-size: 1.3em;
    text-align: center;
  }

  /************************************/
  /* --------SECTION 3.  ------------------*/

  .section-three-img img {
    border-radius: 20px;
    height: auto;
    width: 100%;
  }

  .section-three-content {
    background-color: transparent;
    padding: 0;
  }

  .section-three-title {
    background-color: red;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  /************************************/
  /* --------SECTION 4. ------------------*/

  .section-four-content-container {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    flex-direction: column;
    height: 700px;
    margin: 0;
  }

  /************************************/
  /* --------SECTION 5. SHOP ONLINE ------------------*/

  .delivery-block {
    display: flex;
    flex-direction: column;
  }

  /************************************/
  /* --------SECTION 6. scroller ------------------*/

  .fixed-text {
    margin-left: 0px;
  }

  #rollerBannerHeader {
    font-size: 6vw;
  }
  .rolling-text {
    font-size: 1.6rem;
    height: 50px;
    padding-bottom: 0px;
  }

  /************************************/
  /* --------SECTION 7. CAFE Plate of Day------------------*/

  #daily-plate {
    width: 80%;
  }

  /************************************/
  /* --------FOOTER. ------------------*/

  .footer-column {
    min-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .footer-column ul {
    display: inline-block;
    text-align: left;
  }
  .social-icons {
    margin-bottom: 20px;
  }

  /************************************/
  /* --------ABOUT PAGE. ------------------*/
  .about-container {
    text-align: center;
  }

  .story-section {
    display: block;
    margin: 4px;
    margin-left: 0;
    padding: 0;
  }
}}