#welcome {
  height: 100vh;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: "Playwrite GB S", cursive;
}

/* Background image layer */
.welcome-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/cover-cafe.avif') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

/* Overlay */
.welcome-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* adjust opacity */
  z-index: 1;
}

/* Container layout */
#welcome .container-fluid {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Two-column content row */
#welcome .row-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  height: 100%;
}

/* Both columns */
#welcome .menu-col,
#welcome .text-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  transition: flex 0.5s ease;
}

/* Expand text-col on hover */
#welcome .text-col.expanded {
  flex: 2;
}

#welcome .menu-col.expanded {
  flex: 1.5;
}

/* Helper: stack children vertically */
.flex-column-center {
  flex-direction: column;
}

.headline {
  max-width: 450px;
}

/* Headline */
.headline h2 {
  font-family: "Playwrite GB S", cursive;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(120deg, #000000, #000000);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 1px rgb(255, 255, 255);
}

/* Menu image button */
.menu-image-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.menu-img {
  width: 270px;
  max-width: 90vw;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.menu-image-button:hover .menu-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.menu-label {
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
  font-family: "Playwrite GB S", cursive;
  font-size: 1.6rem;
  color: #fee3adbe;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Description text box */
.text-box {
  background-color: #2f1c0947;
  border: 2px solid rgba(255, 255, 255, 0.047);
  color: #3e2f25;
  padding: 10px 20px;
  max-height: 350px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  backdrop-filter: blur(2px);
  transition: background-color 0.4s ease;
}

#welcome .text-col:hover .text-box {
  background-color: #2f1c09d3;
}

/* Scroll-down arrow inside text box */
.scroll-hint-inside {
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-size: 2rem;
  color: #ffdab9;
  opacity: 0.9;
  animation: bounceDown 1.6s infinite;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* Scrollable description text */
.scrollable-text {
  max-height: 290px;
  overflow-y: auto;
  padding-right: 20px;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  line-height: 1.6;
  font-family: "Playwrite GB S", cursive;
  font-weight: 400;
  color: #ffffff;
}

.scrollable-text::-webkit-scrollbar {
  width: 8px;
}

.scrollable-text::-webkit-scrollbar-thumb {
  background: #7d4820;
  border-radius: 20px;
}

.scrollable-text::-webkit-scrollbar-track {
  background: transparent;
}

/* Accent colour for the tagline paragraph */
#colour2 {
  color: #f5d6ac;
  font-style: italic;
}

/* Responsive — Welcome */
@media (max-width: 768px) {
  #welcome .row-content {
    flex-direction: column;
  }

  #welcome .menu-col,
  #welcome .text-col {
    padding: 1.5rem;
  }

  .text-box {
    max-width: 90%;
    padding: 20px;
  }

  .scrollable-text {
    max-height: 260px;
  }

  .headline h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .welcome-bg {
    background-attachment: scroll;
  }
}


/* ==========================================================================
   OUR STORY SECTION  (#more / .story-section)
   ========================================================================== */

.story-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #ffffff97;
}

/* Watermark logo in background */
.story-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/services/LOGO.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-attachment: fixed;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Content row */
.story-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1400px;
  margin: 80px auto;
  padding: 40px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Reversed layout for alternating sections */
.story-section.reverse .story-container {
  flex-direction: row-reverse;
}

/* Text block — animated on scroll */
.story-text {
  flex: 1;
  font-family: "Playwrite GB S", cursive;
  font-size: 1.1rem;
  color: #4a2e1f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.8;
  letter-spacing: 1.2px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease-out;
}

.story-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #5c3921;
}

.story-text h2 span {
  color: #b9804b;
  font-style: italic;
}

.story-text p {
  margin-bottom: 16px;
}

/* Image block — animated on scroll */
.story-image {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(60px);
  transition: all 1.2s ease-out;
  max-width: 550px;
  max-height: 500px;
  border-radius: 20px;
}

.story-image.animate img {
  opacity: 1;
  transform: translateX(0);
}

/* "Read More" link */
.read-more-link {
  margin-top: 16px;
  display: inline-block;
  font-size: 1rem;
  color: #5c3921;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #b9804b;
}

@media (max-width: 1024px) {
  .story-text h2 {
    font-size: 1.8rem;
  }

  .story-text {
    min-width: 50%;
  }

  .story-image img {
    max-height: 400px;
  }
}

/* Responsive — Story sections */
@media (max-width: 788px) {
  .story-container {
    flex-direction: column;
    padding: 24px;
  }

  .story-section.reverse .story-container {
    flex-direction: column;
  }

  .story-image,
  .story-text {
    width: 100%;
    flex: unset;
  }

  .story-text h2 {
    font-size: 1.7rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .story-image {
    margin-bottom: 30px;
  }

  #story2heading {
    margin-top: 60px;
  }

  .story-bg {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
  }

  .story-image img {
    max-height: 800px;
  }
}


/* ==========================================================================
   PHILOSOPHY SECTION  (#philosophy-section)
   ========================================================================== */

.philosophy-section {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: "Playwrite GB S", cursive;
  position: relative;
  flex-wrap: wrap;
}

/* Left panel — cat image */
.philosophy-left {
  width: 33.33%;
  background: url('../images/services/philosphy.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

.left-overlay {
  background-color: rgba(60, 38, 24, 0.65);
  height: 100%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Philosophy text — animated on scroll */
.philosophy-text {
  color: #fefaf6;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease-out;
}

.philosophy-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffead5;
}

.philosophy-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  font-family: cursive;
}

/* Right panel — philosophy background */
.philosophy-right {
  width: 66.66%;
  background: url('../images/services/coffee-friends.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

@media (max-width: 768px) {
  .philosophy-right {
    background-attachment: scroll;
  }
}

.right-overlay {
  background-color: rgba(59, 34, 21, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  box-sizing: border-box;
}

/* Quote text box — animated on scroll */
.right-text-box {
  background-color: rgba(254, 250, 246, 0.7);
  padding: 2rem;
  max-width: 500px;
  color: #4a2e1f;
  font-family: "Playwrite GB S", cursive;
  border-left: 5px solid #b9804b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(40px);
  transition: all 2s ease-out;
}

.right-text-box.animate {
  opacity: 1;
  transform: translateY(0);
}

.right-text-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.right-text-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: cursive;
}

/* Responsive — Philosophy */
@media (max-width: 1024px) {
  .philosophy-section {
    flex-direction: column;
    height: auto;
  }

  .philosophy-left,
  .philosophy-right {
    width: 100%;
    height: 50vh;
  }

  .left-overlay,
  .right-overlay {
    padding: 2rem 1.5rem;
  }

  .right-overlay {
    justify-content: center;
  }

  .right-text-box {
    max-width: 90%;
    padding: 1.5rem;
  }

  .philosophy-text h2 {
    font-size: 2rem;
  }

  .philosophy-text p {
    font-size: 1rem;
  }

  .right-text-box h2 {
    font-size: 1.7rem;
  }

  .right-text-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {

  .left-overlay,
  .right-overlay {
    padding: 1.5rem 1rem;
  }

  .philosophy-text h2 {
    font-size: 1.6rem;
  }

  .philosophy-text p {
    font-size: 0.9rem;
  }

  .right-text-box {
    padding: 1rem;
  }

  .right-text-box h2 {
    font-size: 1.4rem;
  }

  .right-text-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .philosophy-text h2 {
    margin-top: 80px;
  }
}

/* ==========================================================================
   VISIT US SECTION  (#visit-us)
   ========================================================================== */

.visit-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: #fefaf6;
  font-family: "Playwrite GB S", cursive;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
}

/* Background layer */
.visit-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(250, 246, 240);
  /* background: linear-gradient(rgba(59, 34, 21, 0.6), rgba(59, 34, 21, 0.6)),
    url('../images/services/g9.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; */
  z-index: 0;
}

/* Heading — animated on scroll */
.visit-heading {
  font-size: 4rem;
  color: #3a2400;
  z-index: 2;
  margin-bottom: 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 1.2s ease-out;
}

.visit-heading.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Descriptive text box — animated on scroll */
.visit-textbox {
  position: relative;
  max-width: 600px;

  padding: 3rem 3rem;

  font-family: "Playwrite GB S", cursive;
  color: #4a2e1f;
  font-size: 1.1rem;
  letter-spacing: 1.2px;

  z-index: 2;
  align-self: flex-start;
  margin-bottom: 0rem;

  opacity: 0;
  transform: translateX(-40px);
  transition: all 1.2s ease-out;

  overflow: visible;

  /* REMOVE OLD BG */
  background: transparent;
  border: none;
}

/* PNG CLOUD BACKGROUND */
.visit-textbox::before {
  content: "";
  position: absolute;

  inset: -60px -70px;

  background-image: url("../images/cloud.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  z-index: -1;

  opacity: 0.9;
  pointer-events: none;
}

.visit-textbox.animate {
  transform: translateX(0);
  opacity: 1;
}

.visit-think-wrapper {
  position: relative;

  width: 100%;
  height: 100%;

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

.visit-think-image {

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

  height: auto;
  display: block;

  object-fit: contain;

  position: relative;
  z-index: 5;
}

/* Italic quote lines */
.visit-quote-top {
  font-style: italic;
  color: #5a2d00;
  font-size: 2rem;
  z-index: 2;
  opacity: 0;
  transform: translateX(40px);
  transition: all 1.2s ease-out;
  align-self: flex-end;
  text-align: right;
  margin-right: 1.5rem;
  margin-bottom: 0.3rem;
}

.visit-quote-top.animate {
  transform: translateX(0);
  opacity: 1;
}

/* Typewriter effect line */
.visit-quote-bottom {
  font-weight: bold;
  font-size: 1.7rem;
  font-style: italic;
  color: #b56100;
  z-index: 2;
  opacity: 1;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #fbe8d3;
  align-self: flex-end;
  text-align: right;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

/* Responsive — Visit Us */

@media (max-width: 930px) {
  .visit-heading {
    font-size: 3rem;
  }

  .visit-quote-top {
    font-size: 1.5rem;
  }

  .visit-think-wrapper img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {

  .visit-heading {
    font-size: 2rem;
  }

  .visit-quote-top {
    font-size: 1rem;
  }

  .visit-think-wrapper img {
    max-width: 350px;
  }
}

@media (max-width: 650px) {
  .visit-bg {
    background-attachment: scroll;
  }

  .visit-heading {
    font-size: 2.4rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }

  .visit-textbox {
    font-size: 1rem;
    padding: 2.5rem;
    max-width: 100%;
    margin-bottom: 2rem;
    transform: none;
    opacity: 1;
  }

  .visit-textbox p {
    font-size: 1rem;
  }

  .visit-quote-top,
  .visit-quote-bottom {
    font-size: 1rem;
    margin-right: 0.5rem;
    white-space: normal;
    word-break: break-word;
  }

  .visit-quote-bottom {
    font-size: 0.9rem;
    border-right: 1px solid #fbe8d3;
    margin-bottom: 0.5rem;
  }

}

@media (max-width: 550px) {
  .visit-textbox p {
    font-size: 0.8rem;
  }

  .visit-think-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .visit-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .visit-textbox {
    margin-bottom: 0;
    padding: 3rem 0rem;
  }

  .visit-textbox p {
    font-size: 0.6rem;
  }
}

@media (max-width: 350px) {
  .visit-heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}


/* ==========================================================================
   MEDIA SECTION  (.media-section)
   ========================================================================== */

.media-section {
  position: relative;
  background-color: #3b2215;
  color: #fff;
  font-family: "Playwrite GB S", cursive;
  padding: 4rem 0;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

/* Tinted background image */
.media-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(59, 34, 21, 0.7), rgba(59, 34, 21, 0.7)),
    url('../images/services/food.jpg') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

@media (max-width: 1024px) {
  .media-bg {
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

/* Section heading */
.carousel-title {
  font-size: 2.8rem;
  color: #ffe8c9;
  z-index: 2;
  position: relative;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  letter-spacing: 1.2px;
  margin-top: 3rem;
}

/* Carousel outer wrapper (holds arrows + container) */
.carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  margin-bottom: 4rem;
}

/* Scrollable strip */
.carousel-container {
  position: relative;
  z-index: 2;
  height: 70vh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #b9804b transparent;
}

.carousel-container::-webkit-scrollbar {
  height: 8px;
}

.carousel-container::-webkit-scrollbar-thumb {
  background-color: #b9804b;
  border-radius: 4px;
}

/* Inner flex row of images */
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.food-card {
  position: relative;
  height: 70vh;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}

.food-card img {
  height: 70vh;
  width: auto;
  object-fit: cover;
  display: block;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

/* Overlay */
.food-overlay {
  position: absolute;
  inset: 0;

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

  padding: 2rem 1rem;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.25));

  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Content */
.food-content {
  text-align: center;
  max-width: 320px;

  transform: translateY(30px);
  transition: transform 0.45s ease;
}

.food-content h3 {
  color: #ffe8c9;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-family: "Playwrite GB S", cursive;
  letter-spacing: 1px;
}

.food-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  font-family: cursive;
}

/* Hover Effects */
.food-card:hover img {
  transform: scale(1.06);
  filter: blur(4px) brightness(0.6);
}

.food-card:hover .food-overlay {
  opacity: 1;
  backdrop-filter: blur(4px);
}

.food-card:hover .food-content {
  transform: translateY(0);
}

/* CTA Button */
.order-btn {
  padding: 0.9rem 2rem;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;

  cursor: pointer;

  transition: all 0.35s ease;
}

.order-btn:hover {
  background: #ffe8c9;
  color: #3b2215;
  box-shadow: 0 0 20px rgba(255, 232, 201, 0.35);
}


/* Arrow buttons */
.scroll-hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  z-index: 3;
  pointer-events: auto;
  opacity: 0.9;
  animation: scroll-pulse 1.6s infinite;
  user-select: none;
  cursor: pointer;
}

.scroll-hint.left {
  left: 10px;
}

.scroll-hint.right {
  right: 10px;
}

@keyframes scroll-pulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.12);
  }
}

/* Responsive — Media */
@media (max-width: 1024px) {
  .carousel-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .carousel-title {
    font-size: 2rem;
  }

  .carousel-wrapper {
    padding: 0 20px;
  }

  .carousel-container {
    height: 65vh;
  }

  .carousel-track img {
    height: 65vh;
    max-width: 100vw;
    object-fit: cover;
    transform: none !important;
  }

  .scroll-hint {
    font-size: 2.5rem;
  }
}

@media (max-width: 500px) {

  .media-section {
    padding: 3rem 0;
  }

  .carousel-title {
    font-size: 1.5rem;
    line-height: 1.4;
    padding-inline: 1rem;
    margin-bottom: 1.2rem;
    text-align: center !important;
  }

  .carousel-wrapper {
    padding: 0 10px;
    margin-bottom: 2rem;
  }

  .carousel-container {
    height: 55vh;
  }

  .carousel-track {
    gap: 12px;
  }

  .food-card {
    height: 55vh;
    width: 85vw;
    border-radius: 16px;
  }

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

  .food-overlay {
    padding: 2rem 1rem;
  }

  .food-content {
    max-width: 100%;
    transform: translateY(15px);
  }

  .food-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .food-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .order-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
  }

  .scroll-hint {
    font-size: 2rem;
  }

  .scroll-hint.left {
    left: 5px;
  }

  .scroll-hint.right {
    right: 5px;
  }
}

/* ==========================================================================
   INSTAGRAM SECTION  (.instagram-section)
   ========================================================================== */

.instagram-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #3b2215;
  color: #fff;
  font-family: "Playwrite GB S", cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

/* Tinted background */
.instagram-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(59, 34, 21, 0.7), rgba(59, 34, 21, 0.7)),
    url('../images/services/bg/insta-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

.instagram-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.instagram-title {
  font-size: 2.8rem;
  color: #ffe8c9;
  margin: 0 0 1rem;
  word-break: break-word;
}

.instagram-subtitle {
  font-size: 1.2rem;
  color: #ffe8c9;
  margin-bottom: 2rem;
  max-width: 90%;
}

.instagram-feed {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Responsive — Instagram */
@media (max-width: 768px) {
  .instagram-bg {
    background-attachment: scroll;
  }

  .instagram-title {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .instagram-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}


/* ==========================================================================
   CONTACT SECTION  (.contact-section)
   ========================================================================== */

.contact-section {
  position: relative;
  height: 100vh;
  width: 100%;
  color: #fefaf6;
  font-family: "Playwrite GB S", cursive;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tinted background */
.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(59, 34, 21, 0.75), rgba(59, 34, 21, 0.75)),
    url('../images/services/bg/contact-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

@media (max-width: 768px) {
  .contact-bg {
    background-attachment: scroll;
  }
}

/* Two-column layout */
.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 90%;
  max-width: 1200px;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 280px;
}

/* Left: map heading */
.contact-left h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ffe8c9;
}

/* Responsive iframe map */
.map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 ratio */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0.85;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Right: contact info */
.contact-right h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffe3bd;
}

.contact-right p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #fefaf6;
  line-height: 1.7;
}

.contact-info p i {
  color: #dba56b;
  margin-right: 10px;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  font-family: "Playwrite GB S", cursive;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link i {
  color: #b9804b;
  font-size: 1.2rem;
}

/* Responsive — Contact */
@media (max-width: 768px) {
  .contact-section {
    height: auto;
    padding: 3rem 1rem;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .contact-left h2,
  .contact-right h3 {
    font-size: 1.6rem;
  }

  .contact-right p {
    font-size: 1rem;
  }

  .map-container {
    padding-top: 60%;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   COWORKING MEMBERSHIP SECTION
   ========================================================================== */

.coworking-section {
  padding: 8rem 2rem;
  background-color: #faf6f0;
  /* Cream background */
  color: #2c1e14;
  /* Dark espresso primary text */
  font-family: "Jost", sans-serif;
  overflow: hidden;
}

.coworking-container {
  max-width: 1200px;
  margin: 0 auto;
}

.coworking-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.coworking-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  color: #3e2715;
  /* Walnut wood dark */
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.coworking-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #66554a;
  /* Muted espresso gray */
  line-height: 1.6;
  font-weight: 300;
}

/* Apple-style Segmented Control */
.membership-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.membership-tabs {
  position: relative;
  display: flex;
  background-color: #f3ede4;
  /* Warm sand/cream background */
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(62, 39, 21, 0.05);
  box-shadow: inset 0 2px 4px rgba(62, 39, 21, 0.03);
}

.membership-tab {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  color: #66554a;
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
  font-family: "Jost", sans-serif;
  user-select: none;
}

.membership-tab.active {
  color: #3e2715;
}

.tab-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background-color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(62, 39, 21, 0.08), 0 1px 3px rgba(62, 39, 21, 0.04);
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), width 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Showcase Card */
.showcase-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(62, 39, 21, 0.07);
  box-shadow: 0 20px 60px rgba(62, 39, 21, 0.04), 0 4px 20px rgba(62, 39, 21, 0.02);
  overflow: hidden;
  margin-bottom: 5rem;
}

.showcase-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(185, 128, 75, 0.06) 0%, transparent 60%);
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 580px;
}

/* Left Panel: Content Details */
.showcase-details {
  position: relative;
  padding: 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.showcase-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.showcase-panel.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animations */
.showcase-panel.active .panel-header,
.showcase-panel.active .plan-description,
.showcase-panel.active .plan-divider,
.showcase-panel.active .plan-features,
.showcase-panel.active .cta-wrapper {
  animation: fadeUpIn 0.85s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.showcase-panel.active .panel-header {
  animation-delay: 0.05s;
}

.showcase-panel.active .plan-description {
  animation-delay: 0.12s;
}

.showcase-panel.active .plan-divider {
  animation-delay: 0.18s;
}

.showcase-panel.active .plan-features {
  animation-delay: 0.25s;
}

.showcase-panel.active .cta-wrapper {
  animation-delay: 0.32s;
}

/* Sub-staggering list items */
.showcase-panel.active .feature-item:nth-child(1) {
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.30s;
}

.showcase-panel.active .feature-item:nth-child(2) {
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.35s;
}

.showcase-panel.active .feature-item:nth-child(3) {
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.40s;
}

.showcase-panel.active .feature-item:nth-child(4) {
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.45s;
}

.showcase-panel.active .feature-item:nth-child(5) {
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.50s;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-header {
  margin-bottom: 1.5rem;
}

.plan-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(185, 128, 75, 0.08);
  /* Transparent gold accent */
  color: #b9804b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.plan-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: #3e2715;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-val {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #3e2715;
}

.price-period {
  font-size: 0.95rem;
  color: #8c7667;
  font-weight: 300;
}

.plan-description {
  font-size: 1.05rem;
  color: #66554a;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.plan-divider {
  height: 1px;
  background-color: rgba(62, 39, 21, 0.08);
  margin-bottom: 2rem;
  width: 100%;
}

.plan-features {
  margin-bottom: 2.8rem;
}

.features-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8c7667;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #4e3c30;
  font-weight: 300;
}

.feature-icon {
  color: #b9804b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-wrapper {
  margin-top: auto;
}

.plan-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: #3e2715;
  /* Walnut wood primary */
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 99px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(62, 39, 21, 0.15);
  font-family: "Jost", sans-serif;
  letter-spacing: 0.3px;
}

.plan-cta-btn i {
  font-size: 0.85rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-cta-btn:hover {
  background-color: #553820;
  /* Slightly lighter warm brown */
  box-shadow: 0 15px 30px rgba(62, 39, 21, 0.25);
  transform: translateY(-2px);
}

.plan-cta-btn:hover i {
  transform: translateX(4px);
}

/* Right Panel: Image Display (Aesop and Apple cinematic style) */
.showcase-media {
  position: relative;
  background-color: #f3ede4;
  overflow: hidden;
  z-index: 1;
}

.showcase-img-container {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  z-index: 1;
}

.showcase-img-container.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Luxurious Amenities Strip */
.amenities-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  /* border-top: 1px solid rgba(62, 39, 21, 0.08); */
  padding-bottom: 4rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.amenity-icon {
  font-size: 1.5rem;
  color: #b9804b;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: #ffffff;
  border: 1px solid rgba(62, 39, 21, 0.05);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(62, 39, 21, 0.02);
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.amenity-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #4e3c30;
  letter-spacing: 0.2px;
}

.amenity-item:hover {
  transform: translateY(-4px);
}

.amenity-item:hover .amenity-icon {
  background-color: #3e2715;
  color: #ffffff;
  border-color: #3e2715;
  box-shadow: 0 8px 20px rgba(62, 39, 21, 0.1);
}

/* Responsive - Showcase Section */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-media {
    height: 380px;
    order: -1;
    /* Image sits on top of text on tablets/mobiles */
  }

  .showcase-details {
    padding: 3rem;
  }

  .amenities-strip {
    padding-top: 3rem;
  }
}

@media (max-width: 768px) {
  .coworking-section {
    padding: 5rem 1.5rem;
  }

  .membership-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .showcase-details {
    padding: 2.2rem;
  }

  .plan-title {
    font-size: 2.4rem;
  }

  .price-val {
    font-size: 1.8rem;
  }

  .showcase-media {
    height: 280px;
  }

  .amenities-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .amenity-item {
    min-width: 0;
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .membership-tabs {
    width: 100%;
    display: flex;
  }

  .membership-tab {
    flex: 1;
    padding: 10px 10px;
    font-size: 0.82rem;
    text-align: center;
  }

  .plan-title {
    font-size: 2rem;
  }

  .amenities-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}