
/* ============================================
   Paradise Breeze - Custom Styles (Bootstrap Enhanced)
   ============================================ */

/* Variables */
/* ========================
   GLOBAL
======================== */
body {
    font-family: 'Lato', sans-serif;
    color: #5c554e;
    margin: 0; padding: 0;
}

/* ========================
   HEADER
======================== */
.site-header {
    height: 110px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    z-index: 1050;
}
.site-logo { height: 45px; width: auto; }
.brand-title {
    font-family: 'Cinzel', serif; font-size: 2rem;
    color: #4a9191; font-weight: 400;
}
.brand-tagline {
    font-family: 'Lato', sans-serif; font-size: 0.65rem;
    color: #C4B298; letter-spacing: 3px; text-transform: uppercase; margin-top: 5px;
}
.menu-trigger {
    font-family: 'Lato', sans-serif; font-size: 1.1rem;
    color: #5c554e; cursor: pointer; transition: 0.3s;
}
.menu-trigger:hover { color: #C4B298; }
.menu-trigger.text-active { color: #5c554e; }

/* ========================
   OVERLAY MENU
======================== */
.overlay {
    height: 0; width: 100%; position: fixed; z-index: 1040; top: 0; left: 0;
    background-color: white; overflow-y: hidden; transition: 0.5s; opacity: 0;
}
.overlay-content {
    position: relative; top: 25%; width: 100%; text-align: right; padding-right: 5%;
}
.overlay a {
    padding: 10px; text-decoration: none; font-size: 2rem; color: #5c554e;
    display: block; transition: 0.3s; font-family: 'Lato', sans-serif;
}
.overlay a:hover { color: #4a9191; }

/* ========================
   HERO SECTION
======================== */
.hero-section {
    margin-top: 110px; height: 85vh; width: 100%; position: relative;
    background-image: url('images/first.png');
    background-size: cover; background-position: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)); z-index: 1;
}
.hero-text-wrapper { margin-bottom: 60px; }
.hero-title {
    font-family: 'Cinzel', serif; font-size: 3.5rem; color: white;
    margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-family: 'Cinzel', serif; font-size: 2rem; color: white;
    font-weight: 400; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ========================
   INTRO SECTION
======================== */
.intro-section {
    background-color: #F5F5F5;
    padding: 140px 70px 80px 70px;
}
.sub-heading-small {
    font-family: 'Lato', sans-serif; font-size: 0.85rem; letter-spacing: 2px;
    font-weight: 700; color: #5c554e; text-transform: uppercase; margin-bottom: 20px;
}
.main-heading-teal {
    font-family: 'Cinzel', serif; color: #4a9191; font-size: 2.2rem;
    line-height: 1.4; font-weight: 400; margin-bottom: 40px;
}
.body-text p {
    font-family: 'Lato', sans-serif; font-size: 1rem; line-height: 1.8;
    color: #5c554e; font-weight: 300; margin-bottom: 25px;
}
.btn-custom-outline {
    display: inline-block; border: 1px solid #C4B298; color: #5c554e;
    text-decoration: none; border-radius: 0; padding: 15px 35px;
    font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
    margin-top: 30px; transition: all 0.3s ease;
}
.btn-custom-outline:hover {
    background-color: #C4B298; color: white; border-color: #C4B298;
}

/* ========================
   SLIDER SECTIONS
======================== */
.slider-section-container {
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
}
.bg-light-gray { background-color: #F8F7F5; }

.slider-wrapper {
    max-width: 1440px; margin: 0 auto; position: relative;
    display: flex; align-items: center;
}

.slider-image-area { width: 75%; position: relative; }
.slider-image-area img {
    width: 100%; height: 700px; /* Fixed Height */
    object-fit: cover;
}

.slider-text-card {
    position: absolute; width: 40%; background-color: white;
    padding: 60px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10; top: 50%; transform: translateY(-50%); right: 5%;
}
.text-card-left { right: auto; left: 5%; }

/* Dots & Arrows */
.custom-dots {
    position: absolute; top: 30px; left: 40px; right: auto; bottom: auto; margin: 0; display: flex; gap: 8px;
}
.custom-dots.right-aligned { left: auto; right: 40px; }
.custom-dots button {
    width: 10px !important; height: 10px !important; border-radius: 50%;
    background-color: rgba(255,255,255,0.6) !important; border: none; opacity: 1 !important; transition: 0.3s;
}
.custom-dots button.active { background-color: #4a9191 !important; transform: scale(1.2); }

.custom-arrows {
    position: absolute; bottom: 30px; left: 40px; display: flex; gap: 10px; z-index: 20;
}
.custom-arrows.right-aligned { left: auto; right: 40px; }
.arrow-btn {
    width: 50px; height: 50px; background-color: white; border: none; color: #5c554e;
    font-size: 1.2rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.arrow-btn:hover { background-color: #f0f0f0; color: #C4B298; }

/* Content Typography */
.card-title-teal {
    font-family: 'Lato', sans-serif; color: #4a9191; letter-spacing: 2px;
    font-size: 1.1rem; text-transform: uppercase; margin-bottom: 25px;
}
.card-text { font-size: 1rem; line-height: 1.8; color: #5c554e; margin-bottom: 35px; }
.btn-gold-link {
    text-decoration: none; color: #5c554e; border: 1px solid #C4B298;
    padding: 12px 30px; text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.8rem; transition: 0.3s; display: inline-block;
}
.btn-gold-link:hover { background-color: #C4B298; color: white; }

.amenities-list { list-style: none; padding: 0; margin-bottom: 30px; }
.amenities-list li {
    font-size: 0.95rem; color: #5c554e; margin-bottom: 10px; position: relative; padding-left: 15px;
}
.amenities-list li::before { content: "•"; color: #5c554e; position: absolute; left: 0; font-weight: bold; }

/* ========================
   SELLING TEXT SECTION
======================== */
.selling-text-section {
    padding: 100px 70px 80px 70px;
    background-color: #F5F5F5;
}
.sub-heading-teal {
    font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; color: #4a9191; margin-bottom: 10px;
}
.btn-outline-gold {
    display: inline-flex; align-items: center; text-decoration: none; text-transform: uppercase;
    color: #5c554e; border: 1px solid #C4B298; padding: 12px 30px; font-size: 0.8rem;
    letter-spacing: 2px; margin-top: 20px; transition: 0.3s;
}
.btn-outline-gold:hover { background-color: #C4B298; color: white; }

/* ========================
   SOCIAL GRID SECTION (NEW)
======================== */
.social-grid-section {
    padding: 80px 0 140px 0; /* Exact padding from image specs */
    background-color: #F5F5F5;
    text-align: center;
}

.social-block { 
    display: flex; justify-content: center; align-items: center; 
    margin-bottom: 40px; /* Space between text and grid */
}
.social-text { font-size: 0.9rem; letter-spacing: 2px; color: #5c554e; text-transform: uppercase; }

/* Tall Image Layout */
.social-img-wrapper {
    height: 520px; /* Force exact tall height */
    width: 100%;
    overflow: hidden;
    position: relative;
}
.social-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.social-img-wrapper img:hover {
    transform: scale(1.05);
}

/* ========================
   FOOTER
======================== */
.site-footer { background-color: #358d97; padding: 60px 0 20px 0; color: white; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.8rem; }
.footer-tagline { font-size: 0.65rem; letter-spacing: 2px; color: #e0f2f1; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .slider-wrapper { flex-direction: column !important; }
    .slider-image-area img { height: 400px; } 
    .slider-image-area { width: 100%; }
    .slider-text-card {
        position: relative; width: 90%; right: auto; left: auto; top: auto;
        transform: none; margin-top: -50px; margin-bottom: 30px; margin-left: auto; margin-right: auto;
    }
    .intro-section { padding: 60px 20px; }
    .selling-text-section { padding: 60px 20px; }
    .social-grid-section { padding: 40px 20px 60px 20px; }
    .social-img-wrapper { height: 400px; } /* Smaller height on mobile */
}
:root {
    --teal: #3A9E9E;
    --gold: #B8A06A;
    --dark: #222222;
    --gray: #6B6B6B;
}

/* Base Styles */
body {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.7;
}
/* HOME HERO SECTION */
.home-hero {
  height: 800px;                     /* REQUIRED HEIGHT */
  width: 100%;
  position: relative;
  background-image: url("images/first.png"); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
 

/* Optional dark overlay for readability */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  
}

/* Content */
.home-hero-content {
  position: relative;               /* overlay ke upar lane ke liye */
  color: #ffffff;
   display: flex;
  align-items: flex-end;
  
}

/* Main heading */
.home-hero-content h1 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-size: 48px;
  

  align-items: flex-end;
}
}

/* Sub heading */
.home-hero-content h2 {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
}
/* GOLD OUTLINE BUTTON – Figma Style */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 36px;
  border: 1px solid #d2b48c;           /* gold border */
  background: transparent;

  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;

  color: #6d5f55;
  transition: all 0.25s ease;
}

/* Arrow inside button */
.btn-outline-gold .arrow {
  font-size: 1rem;
  line-height: 1;
}

/* Hover state */
.btn-outline-gold:hover {
  background-color: #d2b48c;
  color: #ffffff;
}
/* SECTION SPACING */
.residences-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #f5f3ef; /* light beige like figma */
}

/* SLIDER WRAPPER */
.res-slider {
  position: relative;
  overflow: hidden;
  background: #000;
}

/* SLIDER TRACK */
.res-slider-track {
  display: flex;
  width: 400%;                 /* 4 slides (change if more/less) */
  transform: translateX(0);
  transition: transform 0.5s ease;
}

.res-slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

/* DOTS (top-left) */
.res-slider-dots {
  position: absolute;
  top: 14px;
  left: 18px;
  display: flex;
  gap: 6px;
}

.res-slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  opacity: 0.7;
  cursor: pointer;
}

.res-slider-dots .dot.active {
  background: #ffffff;
  opacity: 1;
}

/* ARROWS (bottom-left) */
.res-slider-arrows {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.res-arrow {
  width: 42px;
  height: 42px;
  border: none;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.res-arrow span {
  color: #c4a676;               /* gold-ish */
  font-size: 1.1rem;
}

/* RIGHT WHITE CARD */
.res-card {
  background: #ffffff;
  padding: 42px 46px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.res-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1aa5b7;
  margin-bottom: 1.4rem;
}

.res-card p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #6d5f55;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .res-slider-track img {
    height: 320px;
  }

  .res-card {
    margin-top: 2rem;
  }
}
/* IMAGE HEIGHT */
.residence-img {
  height: 480px;
  object-fit: cover;
}

/* WHITE CARD */
.res-card {
  background: #fff;
  padding: 40px;
  margin-left: -70px;        /* card ko image ke upar overlap jaisa effect */
  margin-bottom: 40px;       /* image ke lower part ke level par rakhne ke liye */
}

.heading {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.2rem;
  color: #1aa5b7;
  margin-bottom: 20px;
}

.res-card p {
  font-family: "Nunito", sans-serif;
  color: #6a625b;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LEARN MORE BUTTON */
.learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1px solid #d6b98c;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6a625b;
}

.learn-btn:hover {
  background: #d6b98c;
  color: #fff;
}

/* DOTS TOP LEFT */
.res-dots {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
}

.res-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  opacity: 0.6;
}

.res-dots .dot.active {
  background: #1aa5b7;
  border-color: #1aa5b7;
  opacity: 1;
}

/* ARROWS BOTTOM LEFT */
.res-arrows {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 48px;
  height: 40px;
  background: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  font-size: 20px;
  color: #d1b183;
  cursor: pointer;
}
/* SECTION HEIGHT */
.residence-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* SLIDER MAIN BOX */
.res-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* IMAGES */
.res-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease;
}

.slide-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* DOTS */
.res-dots {
    position: absolute;
    top: 20px;
    left: 25px;
    display: flex;
    gap: 7px;
}

.res-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffffa1;
    border: 1px solid white;
    cursor: pointer;
}

.res-dots .dot.active {
    background: #23a5a0;
    border-color: #23a5a0;
}

/* ARROWS */
.res-arrows {
    position: absolute;
    bottom: 20px;
    left: 25px;
    display: flex;
    gap: 12px;
}

.res-arrow {
    width: 42px;
    height: 36px;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #c5a87a;
    font-size: 18px;
    cursor: pointer;
}

/* RIGHT SIDE CARD */
.res-card {
    background: #fff;
    padding: 40px;
    margin-left: -60px;
    margin-right: 20px;
    box-shadow: 0px 4px 30px rgba(0,0,0,0.08);
}

.res-title {
    font-size: 20px;
    letter-spacing: 1px;
    color: #1e7f7a;
    margin-bottom: 15px;
}

.res-text {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.res-btn {
    display: inline-block;
    border: 1px solid #c5a87a;
    padding: 10px 25px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.res-btn .arrow {
    margin-left: 10px;
    color: #c5a87a;
}

/* Hero Background */
.hero-bg {
    background: 
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%),
        linear-gradient(135deg, 
            #5a7a5a 0%, 
            #4a6a4a 20%, 
            #3a5a3a 40%, 
            #2a4a2a 60%, 
            #1a3a2a 80%, 
            #0a2a1a 100%
        );
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: linear-gradient(45deg, rgba(80,100,70,0.6) 0%, transparent 100%);
    border-radius: 0 0 100% 0;
    transform: rotate(-15deg);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.08) 0%, transparent 60%);
}
/* INTRO LUXURY SECTION */
.intro-luxury-section {
  padding-top: 140px;     /* ✅ REQUIRED */
  padding-bottom: 80px;  /* ✅ REQUIRED */
  background-color: #ffffff;
}

/* Small top line */
.intro-eyebrow {
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6f63;
}

/* Main heading */
.intro-main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #2aa6b3;
  text-transform: uppercase;
}

/* Paragraphs */
.intro-paragraphs p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #6d5f55;
  margin-bottom: 1.2rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Focus States */
.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--teal) !important;
}

.form-check-input:checked {
    background-color: var(--teal);
    border-color: var(--teal);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--teal);
    color: #fff;
}

/* Button Hover States */
.btn-outline-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--dark);
}

/* Link Hover States */
a:hover {
    color: var(--teal);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section .position-relative {
        padding-left: 2rem !important;
        padding-bottom: 4rem !important;
    }
}

@media (max-width: 767px) {
    .hero-section .position-relative {
        padding: 0 1.5rem 3rem !important;
    }
}
/* Global font */
body {
  margin: 0;
  font-family: "Playfair Display", serif;
}

/* HERO SECTION */
.residences-hero {
  height: 800px; /* tumhari requirement */
  width: 100%;
  position: relative;
  color: #ffffff;
  background-image: url("images/bg.png"); /* apni image ka path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
}

/* Center content */
.hero-inner {
  position: relative;
  z-index: 1;
}

/* Title styling */
.residences-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Button style */
/* Figma style button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px; /* text aur arrow ka gap */
  background-color: #1aa5b7; /* teal color */
  color: #ffffff;
  padding: 14px 32px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  border-radius: 0; /* sharp corners */
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background-color: #158a99;
  color: #ffffff;
}

.btn-contact .arrow {
  font-size: 1.3rem; 
  line-height: 1;
  margin-top: 2px; /* thoda align fix */
}
/* SECTION 2 */
.luxury-section {
  background-color: #ffffff;
  padding-top: 110px;    /* TOP padding */
  padding-bottom: 110px; 
}

/* Heading */
.luxury-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 130%;
  color: #2aa6b3; /* teal tone from Figma */
  text-transform: uppercase;
  letter-spacing: 0.0;
  max-width: 520px;
}

/* Paragraph */
.luxury-text {
  font-family: "Nunito";
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #69443C;
  max-width: 520px;
}

/* Image wrapper */
.luxury-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* SECTION 3 - Full Image */
.full-image-section {
  width: 100%;
  height: 800px;                     /* required height */
  background-image: url("images/Hero\ \(1\).png"); /* image path */
  background-size: cover;            /* image cover */
  background-position: center;       /* center crop */
  background-repeat: no-repeat;
}
/* SECTION 4 */
.features-section {
  background-color: #ffffff;
  padding-top: 110px;     /* top spacing */
  padding-bottom: 160px; /* bottom spacing */
}

/* Titles */
.features-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0em;
  text-transform: uppercase;
 
  color: #2aa6b3; /* teal */
}

/* List */
.features-list {
  list-style: none;
  padding-left: 0;
  
}

.features-list li {
 font-family: "Nunito", sans-serif; 
  list-style-type: disc;  /* normal bullet */
  font-size: 0.95rem;
  line-height: 1.4;       /* line height kam – Figma jaisa tight */
  color: #69443C;
  margin-bottom: 6px;
   margin-right: 90px !important;
}

/* Custom bullet */
.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #69443C; /* brownish bullet */
  font-size: 1.1rem;
  line-height: 1;
   margin-left: 20px !important;
}

/* Download button */
.features-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  border: 1px solid #e2c3a6;
  color: #8a5e4b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.features-download-btn:hover {
  background-color: #e2c3a6;
  color: #ffffff;
}
.features-section ul {
  margin-left: 20px;
}
.full-image {
  width: 100%;
  height: 800px;                     /* required height */
  background-image: url("images/Hero\ \(1\).png"); /* image path */
  background-size: cover;            /* image cover */
  background-position: center;       /* center crop */
  background-repeat: no-repeat;
}
/* SECTION 5 – Newsletter / Form */
.newsletter-section {
  background-color: #ffffff;
  padding-top: 110px;
  padding-bottom: 160px;
}

/* Heading */
.newsletter-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2aa6b3;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

/* Form basics */
.newsletter-form label {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  color: #8a5e4b;
  margin-bottom: 0px;
}

.newsletter-form label span {
  color: #c48c5a;
}

/* Underline inputs & selects */
.form-underline {
  border: none;
  border-bottom: 1px solid #9ad3d8;
  border-radius: 0;
  padding: 1px 0 6px;
  background-color: transparent;
  box-shadow: none;
}

.form-underline:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #2aa6b3;
}

/* Bootstrap select reset */
.newsletter-form .form-select.form-underline {
  background-color: transparent;
  background-image: none;
  padding-right: 24px;
}

/* Custom dropdown arrow */
.select-group {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 0;
  bottom: 8px;
  font-size: 0.75rem;
  color: #8a5e4b;
  pointer-events: none;
}

/* Broker row */
.broker-row {
  margin-top: 24px;
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  color: #6d5f55;
}

.broker-label {
  margin-right: 12px;
}

.newsletter-form .form-check-input {
  width: 14px;
  height: 14px;
  border-radius: 0;
  border-color: #c48c5a;
  margin-top: 0;
}

/* Submit button – outline style (like fact sheet) */
.newsletter-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 38px;
  border: 1px solid #e2c3a6;
  background-color: #ffffff;
  color: #8a5e4b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit-btn span {
  font-size: 0.95rem;
}

.newsletter-submit-btn:hover {
  background-color: #e2c3a6;
  color: #ffffff;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .newsletter-title {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }
}
/* OUR STORY HERO */
.our-story-hero {
  height: 800px;                       
  width: 100%;
  position: relative;
  color: #ffffff;
  background-image: url("images/bg\ \(1\).png"); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Title styling */
.our-story-title {
  font-family: "Playfair Display", serif;
  font-size:48px;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: uppercase;

}
/* OUR STORY – STORY BEHIND OUR NAME */
.story-name-section {
  background-color: #ffffff;
  padding-top: 110px;
  padding-bottom: 110px;
}

/* Title */
.story-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2aa6b3;
  max-width: 520px;
}

/* Paragraph text */
.story-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #69443C;
  max-width: 500px;
  padding-right: 60px;
}

/* Image */
.story-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.story1-image {
  width: 100%;
  height: 800px;                     /* required height */
  background-image: url("images/story.png"); /* image path */
  background-size: cover;            /* image cover */
  background-position: center;       /* center crop */
  background-repeat: no-repeat;
}
/* PARADISE THE BAHAMIAN WAY SECTION */
.bahamian-way-section {
  background-color: #ffffff;
  padding-top: 110px;
  padding-bottom: 110px;
}

/* Title */
.bahamian-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #2aa6b3;
  max-width: 520px;
}

/* Text */
.bahamian-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #69443C;
  max-width: 520px;
  padding-right: 69px;
}

/* Image control */
.bahamian-image img {
  width: 100%;
  height: 580px;          /* REQUIRED HEIGHT */
  object-fit: cover;
}
.story2-image {
  width: 100%;
  height: 800px;                     /* required height */
  background-image: url("images/story2.png"); /* image path */
  background-size: cover;            /* image cover */
  background-position: center;       /* center crop */
  background-repeat: no-repeat;
}
/* GALLERY HERO */
.gallery-hero {
  height: 800px;                        /* hero height */
  width: 100%;
  position: relative;
  color: #ffffff;
  background-image: url("images/gallry.png");  /* apni image ka path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Title */
.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* GALLERY PAGE TITLE */
.gallery-page-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #2aa6b3;
  letter-spacing: 0.08em;
}

/* TABS */
.gallery-tabs .nav-link {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: #69443C;
  background: transparent;
  border: none;
  padding: 0 14px;
  position: relative;
}

.gallery-tabs .nav-link.active {
  color: #c59c75;   /* gold underline */
  font-weight: 600;
}

.gallery-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c59c75;
  margin: 0 auto;
}

/* IMAGE STYLING */
.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}
/* GALLERY TABS SECTION SPACING */
.gallery-tabs-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: #ffffff; /* optional - clean white background */
}
/* SECTION */
.residence-section{
  padding:110px 0;
  background:#f4f2ef;        /* page bg */
}

/* SLIDER WRAPPER – only left column width */
.res-slider{
  position:relative;
  width:100%;
  height:420px;              /* adjust if needed */
  overflow:hidden;
  background:#000;
}

/* TRACK & IMAGES */
.res-slider-track{
  display:flex;
  width:400%;                /* 4 slides (update if more/less) */
  height:100%;
  transition:transform .6s ease;
}

.slide-img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* DOTS */
.res-dots{
  position:absolute;
  top:16px;
  left:20px;
  display:flex;
  gap:6px;
}

.res-dots .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:transparent;
  border:1px solid #fff;
  opacity:.7;
  cursor:pointer;
}

.res-dots .dot.active{
  background:#1aa5b7;
  border-color:#1aa5b7;
  opacity:1;
}

/* ARROWS */
.res-arrows{
  position:absolute;
  left:24px;
  bottom:24px;
  display:flex;
  gap:10px;
}

.res-arrow{
  width:42px;
  height:36px;
  border:none;
  background:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.2);
  color:#c5a87a;
  font-size:18px;
  cursor:pointer;
}

/* CARD – simple, side-by-side */
.res-card{
  background:#fff;
  padding:40px;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:2;                 /* always above, never behind */
}

.res-title{
  font-family:"Playfair Display",serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#1aa5b7;
  font-size:1.1rem;
  margin-bottom:1.2rem;
}

.res-text{
  font-family:"Nunito",sans-serif;
  font-size:.95rem;
  line-height:1.9;
  color:#62584f;
  margin-bottom:1rem;
}

.res-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 26px;
  border:1px solid #c5a87a;
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#62584f;
  text-decoration:none;
  margin-top:10px;
}

.res-btn .arrow{
  font-size:1rem;
  color:#c5a87a;
}

.res-btn:hover{
  background:#c5a87a;
  color:#fff;
}

/* MOBILE */
@media(max-width:991.98px){
  .res-slider{
    height:320px;
  }
  .res-card{
    margin-top:24px;
  }
}
/* SECTION */
.residence-section{
  padding:110px 0;
  background:#f4f2ef;        /* page bg */
}

/* SLIDER WRAPPER – only left column width */
body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

/* Hero Section with Background */
.hero-section {
    /* Using a similar tropical beach image */
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url('./images/header-img.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Top Grey Bar (breadcrumb style) */
.top-bar {
    background-color: rgba(200, 200, 200, 0.3);
    /* Semi-transparent grey */
    padding: 10px 40px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
}

.top-bar span {
    color: #fff;
    /* Making it white like the screenshot slightly suggests or grey based on context */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Header Layout */
.main-header {
    padding: 40px 60px;
}

/* Logo Styling (Left Side) */
.brand-title {
    font-family: 'Cinzel', serif;
    /* similar styling to the serif font used */
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.curio-logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-block;
    padding: 2px 0;
    margin-top: 5px;
}

.curio-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.6rem;
    display: block;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Navigation Styling (Right Side) */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.nav-list li {
    margin-bottom: 8px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: opacity 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-list a:hover {
    opacity: 0.8;
}

.nav-list a.active {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Center Content Styling */
.center-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 100px;
    /* Push it up slightly so it's not over the palm trees */
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Button Styling */
.btn-custom {
    background-color: #4AA09D;
    /* The specific teal color */
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 0;
    /* Square edges */
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-custom:hover {
    background-color: #3b827f;
    color: white;
}

.arrow {
    margin-left: 10px;
    font-size: 1.1em;
}

/* Breadcrumb text at very top left outside image area */
.page-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #999;
    font-size: 14px;
    z-index: 10;
    text-transform: uppercase;
    font-weight: bold;
}

.self-expression-image img {
    width: 610px;
    height: 570px;
    object-fit: cover;
}

.middle-section-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.section-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 60px;
}

.title {
    color: #1a9ebc;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.description {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
}

.image-box img {
    width: 656px;
    height: 590px;
    border-radius: 4px;
    object-fit: cover;
}

.things-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 60px;
}

.things-title {
    color: #1a9ebc;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.things-list {
    padding-left: 20px;
    margin: 0;
    max-width: 500px;
}

.things-list li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 6px;
}

.image-holder {
    padding-left: 40px;
}

.things-img {
    width: 100%;
    height: 602px;
    border-radius: 4px;
    object-fit: cover;
}

.map-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 60px;
}

.map-container {
    width: 100%;
}

.map-image img {
    width: 100%;
    height: 536px;
    object-fit: cover;
}

/* --- P MARKER --- */
.p-marker {
    position: absolute;
    top: 22%;
    /* Adjust until identical to screenshot */
    left: 36%;
    /* Adjust until identical to screenshot */
    text-align: center;
}

.p-circle {
    width: 60px;
    height: 60px;
    background: #1a9ebc;
    color: white;
    font-size: 32px;
    font-weight: 600;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
}

/* OPTIONAL LOGO BELOW THE CIRCLE (the “BAHA MAR” text in screenshot) */
.p-logo {
    margin-top: 6px;
    width: 60px;
    /* adjust depending on your logo image */
    height: auto;
}

/* --- BOTTOM RIGHT TEXT --- */
.map-bottom-text {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #7c5a47;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.access-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 60px;
}

/* LEFT LIST */
.access-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.access-list li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 22px;
    height: auto;
}

.icon-sm {
    width: 20px;
    margin-left: 6px;
}

/* RIGHT COLUMN */
.flights-col {
    padding-left: 60px;
    margin-top: -6px;
}

.flight-row {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.city {
    font-size: 15px;
    font-weight: 500;
    color: #4b423f;
    width: 110px;
    /* keeps left aligned exactly like screenshot */
}

.curve {
    width: 90px;
    /* thin curved flight line */
    margin: 0 16px;
}

.time {
    font-size: 14px;
    color: #7a6860;
    width: 120px;
}

.plane {
    width: 24px;
    margin-left: 8px;
}

.form-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: center;
}

.form-heading {
    font-size: 16px;
    color: #1a9ebc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 500;
}

/* INPUTS */
.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d4cabf;
    padding: 6px 0 10px 0;
    font-size: 14px;
    color: #5e5e5e;
    background: transparent;
}

.form-input:focus {
    outline: none;
    border-bottom: 1px solid #1a9ebc;
}

/* CHECKBOXES */
.checkbox-row {
    text-align: left;
    font-size: 14px;
    color: #5e5e5e;
}

.checkbox-row label {
    margin-left: 15px;
    margin-right: 10px;
}

.checkbox-label {
    margin-right: 10px;
}

/* SUBMIT BUTTON */
.submit-wrapper {
    text-align: center;
    margin-top: 45px;
}

.submit-btn {
    padding: 10px 34px;
    border: 1px solid #d4cabf;
    background: transparent;
    font-size: 14px;
    color: #5e5e5e;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #f0ebe6;
}

.arrow {
    margin-left: 6px;
    font-size: 15px;
}
.hero-section-gallery{
    /* Using a similar tropical beach image */
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url('./images/gallry.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
}
.brand-title-gallery{
  color: white;
}

/* Typography */
/* Section padding */
.py-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

/* Heading */
.form-heading {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    letter-spacing: .5px;
    color: #1d8a97;
    line-height: 1.5;
}

/* Inputs underline style */
.line-input {
    border: none;
    border-bottom: 1px solid #a7c5c9;
    border-radius: 0;
    background: transparent;
    padding-left: 0;
    font-family: "Nunito", sans-serif;
}

.line-input:focus {
    border-bottom: 1px solid #1d8a97;
    box-shadow: none;
}

/* Dropdown arrow */
.dropdown-input {
    appearance: none;
    -webkit-appearance: none;
}

.custom-arrow {
    position: absolute;
    right: 10px;
    bottom: 12px;
    font-size: 18px;
    color: #7a7a7a;
    pointer-events: none;
}

/* Checkbox area */
.checkbox-label {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
}

.checkbox-item {
    font-family: "Nunito", sans-serif;
    font-size: 15px;
}

.checkbox-item input {
    margin-right: 6px;
}

/* Button */
.submit-btn {
    padding: 10px 35px;
    border: 1px solid #c7b282;
    background: transparent;
    color: #c7a56a;
    font-family: "Nunito", sans-serif;
    border-radius: 4px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #c7a56a;
    color: #fff;
}

.arrow {
    margin-left: 8px;
}


/* --- FOOTER STYLES --- */
    .footer {
    width: 100%;
    background-color: #1F9CA5;
    padding: 30px 60px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    margin-top: 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
.footer-row{
    margin-top:30px;
    place-items: center;
}
.footer-left{
    font-family: Playfair Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 27.68px;
    text-align: center;
    line-height: 100%;
    letter-spacing: 2%;
    text-transform: uppercase;
    display: grid;
  place-items: center;
  height: 140px;

}

.footer-left span {
    font-family: Nunito;
    font-weight: 300;
    font-size: 8.64px;
    line-height: 100%;
    letter-spacing: 4%;
    text-transform: uppercase;

}

.footer-center,
.footer-social {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF !important;
}
.footer-right{
    padding-bottom: 50px;
    margin-top: 0px;
    text-align: center;
}
.footer-right img{
    height: 70px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.footer-links a {
    text-decoration: none;
    color: #FFFFFF;
}
.privacy-logo{
    height: 30px;
}
.form-divider{
    margin: 10px auto;
    text-align: center;
    width: 100px;
    height: 0px;
    opacity: 1;
    border-top: 0.5px solid;
    color: #D4B278;
}
.footer-copyright{
    font-family: Nunito;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;

}

@media (min-width: 768px) {
  
}
@media (max-width: 499px) {
   
    .footer-left{
        font-family: Playfair Display;
        font-weight: 400;
        font-style: normal;
        font-size: 30.02px;
        line-height: 100%;
        letter-spacing: 2%;
        text-transform: uppercase;

    }
    .right-col{
        text-align: center;
    }
    .social-col{
        margin-top:20px;
        margin-bottom: 20px;
        text-align: center;
    }
    .footer-bottom{
        display: unset;
        font-family: 'Nunito';
    }
    .footer-bottom {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: center;
  }

  .footer-links {
    order: 1;                 /* links first */
    margin-bottom: 10px;      /* spacing before copyright */
    display: flex;
    flex-direction: column;   /* stack links vertically */
    justify-content: center;
    align-items: center;
  }

  .footer-links a,
  .footer-links span {
    margin: 3px 0;            /* spacing between links */
    font-size: 14px;          /* optional smaller font for mobile */
  }
  .footer-links span {
    display: none;
  }
  .footer-copyright {
    order: 2;                 /* copyright at bottom */
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
  }
}