

/* GLOBAL & RESET STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-size: cover;       /* Makes it fill the screen */
  background-repeat: no-repeat; /* Prevents tiling */
  background-position: center;  /* Center the image */
}

h2, p {
  margin: 10px;
}

/* NAVIGATION BAR STYLES */
ul {
  list-style-type: none;
  margin: 20px auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 950px;
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 5px 15px #454444;
}

ul li {
  float: left;
}

ul li a.default {
  display: block;
  color: gray;
  text-align: center;
  padding: 14px 35px;
  text-decoration: none;
}

ul li a.active {
  display: block;
  color: gray;
  font-weight: bold;
  text-align: center;
  padding: 14px 35px;
  text-decoration: none;
}

ul li a:hover {
  background-color: pink;
  color: white;
  text-shadow: 0 0 10px #ff006b;
}

.symbol {
  color: gray;
  padding: 14px 35px;
  display: inline-block;
  transform: translateY(2px);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}


.roselineandsymbol {
  color: gray;
  padding: 14px 35px;
}

/* PAGE LOGO STYLES */
.homelogo {
  margin-top: 200px;
  font-family: Arial;
  font-size: 140px;
  font-weight: bold;
  background: linear-gradient(45deg, #ff9966, #ff006b);
  background-size: 400% 400%; 
  -webkit-background-clip: text;
  color: transparent;
  animation: moveGradient 2s ease infinite;
}

@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promologo {
  margin-top: 25px;
  text-align: left;
  margin-right: 40%;
  font-family: Arial;
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(to top, #ff9966, #ff006b);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.6));
  display: inline-block;
  transform-origin: left center;
  animation: pulseZoom 2s ease-in-out infinite alternate;
}

@keyframes pulseZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.cataloglogo{
   margin-top: 25px;
   text-align: left;
   margin-left: 10%;
  font-family: Arial;
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(to top, #ff9966, #ff006b);
  -webkit-background-clip: text;
  color: transparent;
} 

.catalogsublogo{
   margin-top: 25px;
   text-align: left;
   margin-left: 11%;
  font-family: Arial;
}
.shoplogo {
  margin-top: 25px;
  font-family: Arial;
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(to top, #ff9966, #ff006b);
  -webkit-background-clip: text;
  color: transparent;
}

.aboutlogo {
  margin-top: 600px;
  text-align: left;
  margin-left: 50px;
  font-family: Arial;
  font-size: 100px;
  font-weight: bold;
  background: linear-gradient(to top, #ff9966, #ff006b);
  -webkit-background-clip: text;
  color: transparent;
}

/* PAGE BACKGROUND ASSIGNMENTS */
#home-page {
  background-image: url('backgroundelements.png');
}

#promo-page {
  background-image: url('gradientgirl.png');
}
#deals-page {
  background-image: url('gradientbackgroundnews.png');
}

#catalog-page {
  background-image: url('gradientalso.png');
}

#shop-page {
  background-image: url('bluee.png');
}

/* PROMO PAGE CARDS LAYOUT */
.promo-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  align-items: end;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.main-headline {
  grid-column: 1 / 2;
  font-family: sans-serif;
  color: #ff3366;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.promo-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  flex: 1;
  max-width: 300px;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333;
}

.card:hover {
  transform: translateY(-5px);
}

.left-card {
  grid-column: 1;
  border-radius: 20px;
  padding: 20px;
  min-height: 260px;
  transform: translateY(-210px) translateX(50px);
}
.left-card:hover {
  transform: translateY(-225px) translateX(50px);

}

.middle-card {
  grid-column: 2;
  border-radius: 20px;
  padding: 18px;
  min-height: 240px;
  transform: translateY(-235px) translateX(100px);
}

.middle-card:hover {
  transform: translateY(-245px) translateX(100px);
}

/* Arch Card Outer Box */
.right-card {
  position: relative;
  width: 280px;
  height: 565px;
  
  /* Arch Shape: Top-left and Top-right rounded, bottom flat */
  border-radius: 140px 140px 0 0;
  
  /* Background Image covering full arch shape */
  background-image: url('sea-infused.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
}

.right-card:hover {
  transform: translateY(-5px);
}

/* Inner Overlay Layer for Text */
.arch-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}

/* Top Arch Title */
.arch-title {
  color: #e63973;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 10px 0 0 0;
}

.arch-curved-text {
  color: #e63973;
  font-size: 0.95rem;
  font-weight: 600;
  max-width: 160px;
  margin: 0;
}

/* Bottom Caption */
.arch-sub-caption {
  color: #e63973;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 5px;
  max-width: 200px;
}

/* Clickable Callout */
.arch-footer-link {
  color: #555555;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.card-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  display: block;
  margin: 10px 0;
}
/* Card 1: Left Card Text */
.left-card .tagline {
  color: #e63973;          /* Bright rosy pink */
  font-weight: 700;        /* Bold */
  font-size: 1.15rem;
}

.left-card .offer {
  color: #e63973;          /* Bright rosy pink */
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.left-card .offer strong {
  font-weight: 800;
  font-size: 1rem;
}

/* Card 2: Middle Card Text */
.middle-card .tagline {
  color: #e63973;          /* Bright rosy pink */
  font-weight: 700;        /* Bold */
  font-size: 1.25rem;
  line-height: 1.1;
  text-align: right;       /* Aligned to right as seen in mockup */
}

.middle-card .offer {
  color: #7bb9e8;          /* Soft sky blue */
  font-weight: 600;
  font-size: 0.85rem;
  text-align: right;
}

.middle-card .offer strong {
  font-weight: 800;
}

/* Card 3: Right Card (What's New) Text */
.right-card .tagline {
  color: #e63973;          /* Bright rosy pink */
  font-weight: 700;
  font-size: 1.4rem;
}

.right-card .sub-caption {
  color: #e63973;          /* Bright rosy pink */
  font-weight: 500;
  font-size: 0.85rem;
}

/* CATALOG PAGE CAROUSEL STYLES */
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 90%;
  max-width: 750px; /* Restricts width so extra cards overflow */
  margin: 40px auto;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory; /* Force snapping */
  padding: 40px 0;
  scrollbar-width: none;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  width: 150px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  flex-shrink: 0;
  scroll-snap-align: center; /* Snaps item right to the center axis */
  transition: all 0.3s ease;
  cursor: pointer;
}
.featured-card {
  width: 210px;
  padding: 14px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.card-image-box {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-card .card-image-box {
  height: 200px;
}

.bg-yellow { background-color: #fceecb; }
.bg-blue   { background-color: #dbe9f9; }
.bg-pink   { background-color: #fcdbeb; }

.card-image-box img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}

.plus-icon {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
}

.card-info h3 {
  font-size: 0.75rem;
  margin: 8px 0 4px;
  color: #333;
}

.featured-card .card-info h3 {
  font-size: 0.95rem;
}

.card-info p {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  margin: 0;
  color: #666;
}

.details-link {
  color: #aaaaaa;
  text-decoration: none;
}

.nav-btn {
  background: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #ff3366;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.nav-btn:hover {
  transform: scale(1.1);
}
/* SECTION STYLING FOR STACKED CAROUSELS */
.carousel-section {
  margin: 30px auto 60px;
  max-width: 950px;
}

.section-title {
  text-align: center;
  font-family: Arial, sans-serif;
  color: #ff3366;
  font-size: 1.3rem;
  margin-bottom: -10px;
}

/* EXPANDABLE PRODUCT DETAILS */
.product-details-content {
  display: none;
  font-size: 0.65rem;
  color: #555;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px dashed #e0e0e0;
  line-height: 1.3;
}

.product-card.show-details .product-details-content {
  display: block;
}

.details-link {
  color: #ff3366;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
}




/*SHOP PAGE*/
/* SHOP PAGE LAYOUT */
.shop-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 950px;
  margin: 40px auto;
  padding: 0 20px;
}

/* LEFT PANEL - CART DISPLAY */
.cart-card-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cart-title {
  color: #ff3366;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.cart-item-card {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid #eee;
  text-align: center;
}

.cart-img-box {
  width: 100%;
  height: 100px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-img-box img {
  max-height: 75%;
  max-width: 75%;
  object-fit: contain;
}

.cart-item-details h4 {
  font-size: 0.75rem;
  color: #333;
  margin: 6px 0 2px;
}

.qty-badge {
  color: #ff3366;
  font-weight: bold;
}

.cart-item-details p {
  font-size: 0.7rem;
  color: #666;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff3366;
  font-size: 0.65rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ADD MORE CARD */
.add-more-card {
  background: #e6e6e6;
  border-radius: 16px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #888;
  transition: background 0.2s ease;
}

.add-more-card:hover {
  background: #dcdcdc;
}

.add-plus {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
}

.add-more-card span {
  font-size: 0.65rem;
  margin-top: 6px;
}

/* RIGHT PANEL - CHECKOUT FORM */
.checkout-form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  color: #ff3366;
  margin-bottom: 4px;
  margin-top: 12px;
}

.form-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ffccd5;
  border-radius: 8px;
  outline: none;
  font-size: 0.85rem;
  box-sizing: border-box;
}

.order-summary-box {
  width: 100%;
  min-height: 70px;
  border: 1px solid #ffccd5;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 0.75rem;
  color: #ff3366;
  background: #fffafa;
}

.total-row {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #ffccd5;
  font-size: 0.85rem;
}

/* FORM BUTTONS */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-confirm, .btn-cancel {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 20px;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  background: #ff006b;
  box-shadow: 0 4px 10px rgba(255, 0, 107, 0.2);
  transition: transform 0.1s ease;
}

.btn-confirm:hover, .btn-cancel:hover {
  transform: scale(1.03);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #ff3366;
  background-color: transparent;
}

/* 3-COLUMN FLEX CONTAINER */
.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 2500px;
  margin: 100px auto;
  padding: 0 200px;
  min-height: 400px;
}

.about-col {
  display: flex;
  flex-direction: column;
}

/* LEFT COLUMN */
.col-left {
  width: 400px;
  justify-content: space-between;
  min-height: 400px;
}

.about-headline {
  font-size: 1.65rem;
  font-weight: 700;
  color: #ff3366;
  margin-bottom: 12px;
}

.about-description {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #ff3366;
}

.brand-logo-large {
  margin-top: 0px;
  text-align: left;
  margin-left: 50px;
  font-family: Arial;
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(to top, #ff9966, #ff006b);
  -webkit-background-clip: text;
  color: transparent;
}

/* CENTER COLUMN */
.col-center {
  width: 280px;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.hero-graphic {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply; /* Removes white background boxes around graphics */
}

/* RIGHT COLUMN */
.col-right {
  width: 230px;
  gap: 28px;
  padding-top: 10px;
}

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

.contact-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff3366;
  margin-bottom: 6px;
}

.contact-detail {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #ff3366;
}

/* DYNAMIC SOCIAL ROW */
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
}

.social-btn {
  background: transparent;
  border: 1.5px solid #ff3366;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ff3366;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.social-btn svg {
  width: 100%;
  height: 100%;
}

.social-btn:hover {
  background: #ff3366;
  color: #ffffff;
}

.social-handle-display {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff3366;
  font-size: 0.82rem;
  cursor: pointer;
}

.social-handle-display svg {
  width: 18px;
  height: 18px;
}
/* Modal Backdrop Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

/* White Popup Card Container */
.deal-card-container {
  background: #ffffff;
  border-radius: 24px;
  width: 90%;
  max-width: 850px;
  padding: 30px 40px;
  position: relative;
  z-index: 999; /* Places card above background */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Back Link Button */
.back-link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff2a5f;
  text-decoration: none;
  margin-bottom: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.7;
}

/* 2-Column Main Layout */
.deal-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Image Column */
.deal-img-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.deal-img {
  width: 50%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

/* Right Text Column */
.deal-info-col {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 20px;
}

.deal-header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff2a5f;
}

/* Product Links Stack */
.product-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0;
}

.product-item {
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.product-item:hover {
  transform: translateX(-5px);
}

/* Colored Text Classes */
.product-item.purple { color: #b784cc; }
.product-item.yellow { color: #f2cb35; }
.product-item.green  { color: #69cbbb; }

.deal-footer {
  font-size: 1.1rem;
  color: #a3d5ff;
  margin-top: 15px;
}

.deal-footer strong {
  font-weight: 800;
}
/* Add to bottom of stylesheet.css or within a <style> tag */
.modal-overlay {
  display: flex !important; /* Forces the container to be visible */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.product-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.product-link:hover {
  opacity: 0.8;
}
/* Card Container with Background Graphic */
.duo-card-container {
  background-color: #ffffff;
  background-image: url('duo-banner.png'); /* Set your combined image here */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  
  border-radius: 24px;
  width: 90%;
  max-width: 850px;
  height: 380px; /* Gives the card height so the graphic fits properly */
  padding: 25px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  
  /* Absolute centering over page background */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  box-sizing: border-box;
  font-family: 'Fredoka', sans-serif;
}

/* Back Link */
.back-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e63973;
  text-decoration: none;
  display: inline-block;
}

/* Header */
.duo-header {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e63973;
  margin-top: 5px;
  margin-bottom: 0;
}

/* Centered Text Overlay */
.duo-text-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.product-link {
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}

.product-link:hover {
  opacity: 0.8;
}

.product-title-pink {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e63973;
  margin: 0;
}

.paired-text {
  font-size: 1.1rem;
  color: #e63973;
  margin: 4px 0;
  font-weight: 500;
}

.product-title-orange {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e5825a;
  margin: 0;
}

/* Footer Section */
.duo-footer {
  position: absolute;
  bottom: 25px;
  left: 35px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5825a;
  line-height: 1.2;
}

.duo-footer strong {
  font-weight: 800;
  font-size: 1.1rem;
}

/* Back Link Placement */
.back-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e63973;
  text-decoration: none;
  position: absolute;
  top: 90px;
  left: 60px;
  z-index: 10;
}

/* 3-Arch Grid Layout */
.arch-grid-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  max-width: 1100px;
  height: 520px;
  margin: 100px auto 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Base Arch Card Style */
.arch-card {
  position: relative;
  width: 300px;
  height: 480px;
  border-radius: 150px 150px 0 0; /* Full Top Arch, Flat Bottom */
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease-in-out;
}

.arch-card:hover {
  transform: translateY(-8px);
}

/* Background Images for Each Arch */
.arch-left {
  background-image: url('ship.png');
}

.arch-middle {
  background-image: url('sea-infused.png');
}

.arch-right {
  background-image: url('factory.png');
}

/* Overlay Layouts */
.arch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Places text at the bottom by default */
  align-items: center;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}

/* Specific Middle Arch Center Layout */
.arch-center-text {
  justify-content: space-between;
  padding-bottom: 40px;
}

/* Bottom Overlay Titles (Left & Right Archs) */
.arch-bottom-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* Ensures visibility over photo */
  margin-bottom: 20px;
}

/* Middle Arch Typography */
.arch-main-title {
  color: #e63973;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10px;
}

.arch-curved-subtitle {
  color: #e63973;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.arch-sub-caption {
  color: #e63973;
  font-size: 0.85rem;
  font-weight: 500;
  max-width: 180px;
}





