.logo-img {
  /* width: 40px;
  height: 40px; */
  object-fit: cover;
  margin-right: 8px;
}

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* playfair font  */
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* color variables */
:root {
  --color-primary: #2C211F;
  --color-secondary: #1D1D1D;
}

/* Custom Navbar Styles */

*{
  font-family: "Public Sans", sans-serif;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.custom-navbar {
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  background: #fff;
  width: calc(100% - 32px);
  max-width: 1440px;
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  margin: 0;
  padding: 12px 0;
}

.navbar-brand {
  font-weight: 500;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

.navbar-toggler {
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.navbar-nav .nav-link.active {
  color: var(--color-primary) !important;
  border-bottom: 1px solid var(--color-primary);

}

.search-box {
  max-width: 140px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.search-box:focus {
  border-color: #3765AF;
  box-shadow: 0 0 0 0.2rem rgba(55, 101, 175, 0.15);
}

/* Navbar Responsive */
@media (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 991.98px) {
  .custom-navbar {
    width: calc(100% - 24px);
    top: 16px;
  }
  
  .navbar-nav {
    gap: 0;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .navbar-nav .nav-link:hover {
    color: var(--color-primary) !important;
    border-left: 3px solid var(--color-primary);
    background-color: rgba(44, 33, 31, 0.05);
  }
  
  .navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
    border-left: 3px solid var(--color-primary);
    background-color: rgba(44, 33, 31, 0.1);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .search-box {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .custom-navbar {
    width: calc(100% - 16px);
    top: 12px;
    border-radius: 12px;
  }
  
  .logo-img {
    max-width: 180px;
  }
}



/* Hero Section Styles */
.hero-section {
  background-image: url('../images/hero\ background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-primary);
}

.hero-image-frame {
  /* min-width: 340px;
  min-height: 340px; */
  /* max-width: 420px;
  max-height: 420px; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-4.45deg);
}

.hero-frame-bg {
  width: 100%;
  height: auto;
}

.hero-main-photo {
    top: 12%;
    left: 5%;
    width: 90%;
    height: 81%;
    z-index: 2;
    object-fit: cover;
}

.lead {
  font-size: 38px;
  font-weight: 400;
}

/* Hero Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .hero-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem !important;
  }
  
  .hero-image-frame {
    min-width: 220px;
    min-height: 220px;
    max-width: 320px;
    max-height: 320px;
  }
  
  .logo-img {
    width: 100%;
    margin: 0;
  }
  
  .lead {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-image-frame {
    max-width: 280px;
    max-height: 280px;
  }
}

/* Intro Section Styles */
.intro-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}
.intro-bg {
  background-image: url('../images/about\ background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  opacity: 1;
  z-index: 0;
}
.intro-heading-banner {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: inline-block;
}
.intro-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-banner-text {
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 85%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  text-align: center;
}
.intro-banner-text h2 {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.intro-banner-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.4;
}

/* Intro Banner Responsive */
@media (max-width: 767.98px) {
  .intro-banner-text {
    width: 80%;
  }
  
  .intro-banner-text h2 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }
  
  .intro-banner-subtitle {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }
}

@media (max-width: 575.98px) {
  .intro-banner-text {
    width: 75%;
  }
  
  .intro-banner-text h2 {
    font-size: 14px;
  }
  
  .intro-banner-subtitle {
    font-size: 12px;
  }
}

.intro-frame {
  min-width: 260px;
  min-height: 260px;
  max-width: 340px;
  max-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
}
.intro-frame-bg {
  width: 100%;
  height: auto;
}
.intro-photo {
  top: 2%;
  left: 15%;
  width: 70%;
  height: 90%;
  z-index: 2;
  object-fit: cover;
  transform: rotate(-6deg);
}
.about-heading{
  font-size: 44px;
  font-weight: 800;
  color: var(--color-primary);
}
.about-text{
  font-size: 28px;
  font-weight: 500;
  color: var(--color-primary);
}
.btn-read-more{
  font-size: 16px;
  font-weight: 500;
  color: #2C211F;
  border: 1px solid #000000;
  border-radius: 8px;
  background-color: #fff;
  padding: 10px 24px;
}

.social-btn{
    font-size: 16px;
    font-weight: 500;
    color: #2C211F;
    border: 1px solid #000000;
    /* border-radius: 50% !important; */
    background-color: #fff;
    padding: 10px 24px;
}

@media (max-width: 991.98px) {
  .intro-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .intro-heading-banner {
    min-width: 220px;
    min-height: 80px;
  }
  /* .intro-banner-img {
    max-width: 320px;
  } */
  .intro-frame {
    min-width: 180px;
    min-height: 180px;
    max-width: 220px;
    max-height: 220px;
  }
  /* Center align text under 992px */
  .about-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
  }
  .about-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    text-align: center;
  }
  .btn-read-more {
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .intro-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .intro-heading-banner {
    min-width: 160px;
    min-height: 60px;
  }
  /* .intro-banner-img {
    max-width: 200px;
  } */
  .intro-frame {
    min-width: 180px;
    min-height: 180px;
    
  }
  .about-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  .about-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}
@media (max-width: 575.98px) {
  .about-heading {
    font-size: 1.5rem;
  }
  .about-text {
    font-size: 1rem;
  }
  .btn-read-more {
    font-size: 14px;
    padding: 8px 20px;
  }
}

/* Lifestyle Journal Section Styles */
.blog-heading{
  color: var(--color-primary);
}
.blog-text{
  color: var(--color-secondary);
}
.journal-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  z-index: 1;
}
.journal-bg {
  background-image: url('../images/blog\ bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.journal-banner {
  display: inline-block;
  position: relative;
  min-width: 340px;
  min-height: 120px;
}
.journal-banner-img {
  width: 100%;
  max-width: 800px;
  height: auto;
}
.journal-banner-text {
  width: 100%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  padding: 0 1rem;
}
.journal-banner-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.journal-banner-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

.journal-polaroid {
  position: relative;
  padding: 0;
  overflow: visible;
  margin-bottom: 2rem;
}
.journal-polaroid img {
  border-radius: 0;
}
.journal-polaroid-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg,rgba(0,0,0,0.5),rgba(0,0,0,0));
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  letter-spacing: 1px;
}
.journal-polaroid-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.journal-polaroid-body {
  flex: 1 1 0%;
}

.journal-about {
  margin-bottom: 2rem;
}
.journal-about-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
}

.journal-search input[type="text"] {
  border-radius: 8px;
  font-size: 1rem;
}
.journal-search button {
  border-radius: 8px;
  font-size: 1rem;
}

.journal-social .btn {
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.journal-collage-wrapper {
  position: relative;
  width: 100%;
  min-height: 320px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journal-collage-img {
  position: relative;
  z-index: 1;
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.journal-collage-frame {
  z-index: 2;
  pointer-events: none;
  max-width: 100%;
  height: auto;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: block;
}
.journal-collage-wrapper .journal-polaroid-title {
  z-index: 3;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

/* Custom breakpoint for 1024px and tablet landscape */
@media (max-width: 1199.98px) and (min-width: 768px) {
  .journal-polaroid .col-lg-5 {
    flex: 0 0 42%;
    max-width: 42%;
  }
  .journal-polaroid .col-lg-7 {
    flex: 0 0 58%;
    max-width: 58%;
  }
  .journal-polaroid p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .journal-polaroid h5 {
    font-size: 1.1rem;
  }
  .frame-wrapper2 {
    max-width: 90%;
  }
}

@media (max-width: 991.98px) {
  .journal-section {
    padding-top: 140px;
    padding-bottom: 48px;
  }
  .journal-banner {
    min-width: 220px;
    min-height: 80px;
  }
  .journal-banner-img {
    max-width: 320px;
  }
  .journal-polaroid-img {
    width: 120px;
    height: 120px;
  }
  .journal-about-img {
    width: 80px;
    height: 80px;
  }
  .journal-collage-wrapper {
    min-height: 200px;
  }
  .journal-collage-img {
    max-width: 90%;
  }
}
@media (max-width: 767.98px) {
  .journal-section {
    padding-top: 120px;
    padding-bottom: 32px;
    overflow-x: hidden;
  }
  .journal-section .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
  .journal-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Stack image and text vertically under 768px */
  .journal-polaroid .col-lg-5,
  .journal-polaroid .col-md-5 {
    flex: 0 0 100%;
    max-width: 100%;
    /* margin-bottom: 1.5rem; */
    order: 1; /* Image first */
  }
  .journal-polaroid .col-lg-7,
  .journal-polaroid .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2; /* Text second */
    text-align: center;
  }
  
  .frame-wrapper2 {
    max-width: 70%;
    margin: 0 auto;
  }
  
  .journal-banner {
    min-width: 160px;
    min-height: 60px;
  }
  .journal-banner-img {
    max-width: 200px;
  }
  .journal-polaroid-img {
    width: 80px;
    height: 80px;
  }
  .journal-about-img {
    width: 60px;
    height: 60px;
  }
  .journal-collage-wrapper {
    min-height: 120px;
  }
  .journal-collage-img {
    max-width: 100%;
  }
}

.frame-wrapper {
  position: relative;
  display: inline-block;
}

.frame-wrapper img.frame {
  display: block;
  max-width: 100%;
  height: auto;
}

.frame-wrapper img.inner-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;  /* adjust size inside frame */
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.frame-wrapper .overlay-text {
  position: absolute;
  bottom: 15%;
  left: 5%;
  /* transform: translateX(-50%); */
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  word-wrap: break-word;
  width: 90%;
}

/* Responsive overlay text positioning */
@media (max-width: 991.98px) {
  .frame-wrapper {
    max-width: 100%;
  }
  .frame-wrapper2 {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .frame-wrapper {
    max-width: 95%;
    margin: 0 auto;
  }
  .frame-wrapper2 {
    max-width: 95%;
    margin: 0 auto;
  }
  .frame-wrapper .overlay-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
    font-size: 1rem;
  }
  .frame-wrapper2 .overlay-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .frame-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  .frame-wrapper2 {
    max-width: 100%;
    margin: 0 auto;
  }
  .frame-wrapper .overlay-text {
    font-size: 0.9rem;
    width: 90%;
  }
  .frame-wrapper2 .overlay-text {
    font-size: 0.9rem;
    width: 90%;
  }
  
  /* Additional journal section responsive fixes */
  .journal-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .journal-section .col-lg-9,
  .journal-section .col-lg-3 {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.photo-frame-box {
  position: relative;
  display: inline-block;
}

.photo-frame-box img.bg-frame {
  display: block;
  max-width: 100%;
  height: auto;
}

.photo-frame-box img.foreground-photo {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 70%;   /* adjust fit */
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.photo-frame-box .text-overlay {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}


.frame-wrapper2 {
  position: relative;
  display: inline-block;
}

.frame-wrapper2 img.frame2 {
  display: block;
  max-width: 100%;
  height: auto;
}

.frame-wrapper2 img.inner-image2 {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 80%;  /* adjust size inside frame */
  height: 74%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.frame-wrapper2 .overlay-text {
  position: absolute;
  bottom: 15%;
  left: 20%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

/* pagination  */

.custom-pagination {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 15px;
  font-size: 1rem;
}

.custom-pagination .page-info {
  font-weight: 500;
  font-family: "Playfair", serif;
  font-weight: 600;
}

.custom-pagination .btn-next {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: 0.3s;
}

.custom-pagination .btn-next:hover {
  background-color: #000;
  color: #fff;
}


/* florida fav  */
.florida-fav-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}
.florida-fav-bg {
  background-image: url('../images/florida\ fav.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.florida-fav-heading-banner {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 800px;
}
.florida-fav-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.florida-fav-banner-text {
  width: 90%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  padding: 0 1rem;
  text-align: center;
}
.florida-fav-banner-text h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.florida-fav-banner-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.4;
}

.florida-fav-frame {
  /* min-width: 260px;
  min-height: 260px;
  max-width: 340px;
  max-height: 340px; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transform: rotate(-6deg); */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.florida-fav-frame.rotate-pos:hover {
  transform: rotate(8deg);
}

.florida-fav-frame.rotate-0:hover {
  transform: rotate(2deg);
}

.florida-fav-frame.rotate-neg:hover {
  transform: rotate(-8deg);
}

.florida-fav-frame-right {

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(6deg);
}
.florida-fav-frame-center {

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
}

.florida-fav-frame-bg {
  width: 100%;
  height: auto;
}
.florida-fav-photo {
  top: 10%;
  left: 15%;
  width: 70%;
  height: 65%;
  z-index: 2;
  object-fit: cover;
}

.florida-fav-heading {
  font-weight: 700;
}

.florida-fav-text {
  font-size: 1rem;
}

/* Rotation classes */
.rotate-neg {
  transform: rotate(-6deg);
}

.rotate-0 {
  transform: rotate(0deg);
}

.rotate-pos {
  transform: rotate(6deg);
}

/* Optional spacing for mobile rows */
.florida-fav-gallery .row > [class*="col-"] {
  margin-bottom: 1rem;
}

.florida-fav-link {
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: #2C211F;
  font-size: 15px;
  white-space: nowrap;
}
.florida-fav-link:hover {
  color: #000000;
}

/* Florida Favorites responsive */
@media (max-width: 991.98px) {
  .florida-fav-heading-banner { max-width: 600px; }
  .florida-fav-banner-text { width: 85%; }
  .florida-fav-link {
    font-size: 13px;
  }
}
@media (max-width: 767.98px) {
  .florida-fav-heading-banner { max-width: 450px; }
  .florida-fav-banner-text { 
    width: 70%; 
    padding: 0 0.25rem;
  }
  .florida-fav-link {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .florida-fav-heading-banner { max-width: 100%; }
  .florida-fav-banner-text { 
    width: 65%; 
    padding: 0 0.15rem;
  }
  .florida-fav-banner-text h2 { margin-bottom: 0.1rem; }
  .florida-fav-link {
    font-size: 14px;
  }
}

  /* Readers' Favorites */
  .readers-fav-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 1;
  }
  .readers-fav-bg {
    background-image: url('../images/Readers-Favorites\ bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 0;
  }
  .readers-fav-banner {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 800px;
  }
  .readers-fav-banner-img {
    width: 100%;
    height: auto;
    display: block;
  }
  .readers-fav-banner-text {
    width: 90%;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    padding: 0 1rem;
    text-align: center;
  }
  .readers-fav-banner-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
  }
  .readers-fav-banner-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
  }

  /* Cards */
  .readers-card {
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  }
  .readers-card-lg {
    aspect-ratio: 12/10;
    min-height: 360px;
  }
  .readers-card img { object-fit: cover; }
  .readers-card-gradient {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
  }
  .readers-card-title {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  }

  @media (max-width: 991.98px) {
    .readers-fav-section { padding-top: 48px; padding-bottom: 48px; }
    .readers-fav-banner { max-width: 600px; }
    .readers-fav-banner-text { width: 85%; }
    .readers-card-lg { min-height: 300px; }
  }
  @media (max-width: 767.98px) {
    .readers-fav-section { padding-top: 32px; padding-bottom: 32px; }
    .readers-fav-banner { max-width: 450px; }
    .readers-fav-banner-text { 
      width: 80%; 
      padding: 0 0.5rem;
    }
    .readers-card-title { font-size: 1.05rem; }
    .readers-card-lg { min-height: 220px; }
  }
  @media (max-width: 575.98px) {
    .readers-fav-banner { max-width: 100%; }
    .readers-fav-banner-text { 
      width: 65%; 
      padding: 0 0.15rem;
    }
    .readers-fav-banner-text h2 { margin-bottom: 0.1rem; }
    .readers-card-title { font-size: 1.05rem; }
    .readers-card-lg { min-height: 220px; }
  }

/* Coastal Holidays & Harvests */
.coastal-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}
.coastal-bg {
  background-image: url('../images/c-blogs-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.coastal-banner {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 800px;
}
.coastal-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.coastal-banner-text {
  width: 90%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  padding: 0 1rem;
  text-align: center;
}
.coastal-banner-text h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.coastal-banner-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.4;
}

.coastal-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.coastal-frame.rotate-pos:hover {
  transform: rotate(8deg);
}

.coastal-frame.rotate-0:hover {
  transform: rotate(2deg);
}

.coastal-frame.rotate-neg:hover {
  transform: rotate(-8deg);
}
.coastal-photo {
  top: 10%;
  left: 15%;
  width: 70%;
  height: 65%;
  z-index: 2;
  object-fit: cover;
}
.coastal-link {
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: #2C211F;
  font-size: 15px;
  white-space: nowrap;
}
.coastal-link:hover {
  color: #000000;
}

/* Coastal responsive */
@media (max-width: 991.98px) {
  .coastal-banner { max-width: 600px; }
  .coastal-banner-text { width: 85%; }
  .coastal-link {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .coastal-banner { max-width: 450px; }
  .coastal-banner-text { 
    width: 70%; 
    padding: 0 0.25rem;
  }
  .coastal-link {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .coastal-banner { max-width: 100%; }
  .coastal-banner-text { 
    width: 65%; 
    padding: 0 0.15rem;
  }
  .coastal-banner-text h2 { margin-bottom: 0.1rem; }
  .coastal-link {
    font-size: 14px;
  }
}

/* Family Artwork Section */
.artwork-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 28px;
  z-index: 1;
}
.artwork-bg {
  background-image: url('../images/artwork\ bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.artwork-banner {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 800px;
}
.artwork-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.artwork-banner-text {
  width: 90%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  padding: 0 1rem;
  text-align: center;
}
.artwork-banner-text h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.artwork-banner-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.4;
}

.artwork-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.artwork-frame:hover {
  transform: scale(1.05) rotate(0deg) !important;
}
.artwork-photo {
  top: 13%;
  left: 11%;
  width: 80%;
  height: 74%;
  z-index: 2;
  object-fit: cover;
}

/* Modal styling */
.artwork-modal-content {
  background: transparent;
  border: none;
}
.artwork-modal-content .modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1051;
  background: #ffffff;
  border-radius: 50%;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.artwork-modal-content .btn-close {
  padding: 0;
  margin: 0;
  opacity: 1;
  background-size: 18px;
}
.artwork-modal-content .btn-close:hover {
  opacity: 0.8;
}
.artwork-modal-content .modal-body img {
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

@media (max-width: 767.98px) {
  .artwork-modal-content .modal-header {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
  }
  .artwork-modal-content .btn-close {
    background-size: 16px;
  }
}

/* Artwork responsive */
@media (max-width: 991.98px) {
  .artwork-banner { max-width: 600px; }
  .artwork-banner-text { width: 85%; }
}
@media (max-width: 767.98px) {
  .artwork-banner { max-width: 450px; }
  .artwork-banner-text { 
    width: 70%; 
    padding: 0 0.25rem;
  }
}
@media (max-width: 575.98px) {
  .artwork-banner { max-width: 100%; }
  .artwork-banner-text { 
    width: 65%; 
    padding: 0 0.15rem;
  }
  .artwork-banner-text h2 { margin-bottom: 0.1rem; }
}

/* Captured Moments Section */
.moments-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}
.moments-bg {
  background-image: url('../images/moments\ bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.moments-banner {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 800px;
}
.moments-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.moments-banner-text {
  width: 90%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  padding: 0 1rem;
  text-align: center;
}
.moments-banner-text h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.moments-banner-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.4;
}

.moments-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.moments-frame:hover {
  transform: scale(1.05) rotate(0deg) !important;
}
.moments-photo {
  top: 13%;
  left: 11%;
  width: 80%;
  height: 74%;
  z-index: 2;
  object-fit: cover;
}

/* Moments Modal styling */
.moments-modal-content {
  background: transparent;
  border: none;
}
.moments-modal-content .modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1051;
  background: #ffffff;
  border-radius: 50%;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.moments-modal-content .btn-close {
  padding: 0;
  margin: 0;
  opacity: 1;
  background-size: 18px;
}
.moments-modal-content .btn-close:hover {
  opacity: 0.8;
}
.moments-modal-content .modal-body img {
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

@media (max-width: 767.98px) {
  .moments-modal-content .modal-header {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
  }
  .moments-modal-content .btn-close {
    background-size: 16px;
  }
}

/* Moments responsive */
@media (max-width: 991.98px) {
  .moments-banner { max-width: 600px; }
  .moments-banner-text { width: 85%; }
}
@media (max-width: 767.98px) {
  .moments-banner { max-width: 450px; }
  .moments-banner-text { 
    width: 70%; 
    padding: 0 0.25rem;
  }
}
@media (max-width: 575.98px) {
  .moments-banner { max-width: 100%; }
  .moments-banner-text { 
    width: 65%; 
    padding: 0 0.15rem;
  }
  .moments-banner-text h2 { margin-bottom: 0.1rem; }
}

/* Most Read Section */
.mostread-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}
.mostread-bg {
  background-image: url('../images/florida\ fav.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.mostread-banner {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 800px;
}
.mostread-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.mostread-banner-text {
  width: 90%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  padding: 0 1rem;
  text-align: center;
}
.mostread-banner-text h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.mostread-banner-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.4;
}

.mostread-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mostread-frame.rotate-pos:hover {
  transform: rotate(8deg);
}

.mostread-frame.rotate-0:hover {
  transform: rotate(2deg);
}

.mostread-frame.rotate-neg:hover {
  transform: rotate(-8deg);
}
.mostread-photo {
  top: 10%;
  left: 15%;
  width: 70%;
  height: 65%;
  z-index: 2;
  object-fit: cover;
}
.mostread-link {
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: #2C211F;
  font-size: 15px;
  white-space: nowrap;
}
.mostread-link:hover {
  color: #000000;
}

/* Most Read responsive */
@media (max-width: 991.98px) {
  .mostread-banner { max-width: 600px; }
  .mostread-banner-text { width: 85%; }
  .mostread-link {
    font-size: 13px;
  }
}
@media (max-width: 767.98px) {
  .mostread-banner { max-width: 450px; }
  .mostread-banner-text { 
    width: 70%; 
    padding: 0 0.25rem;
  }
  .mostread-link {
    font-size: 11px;
  }
}
@media (max-width: 575.98px) {
  .mostread-banner { max-width: 100%; }
  .mostread-banner-text { 
    width: 65%; 
    padding: 0 0.15rem;
  }
  .mostread-banner-text h2 { margin-bottom: 0.1rem; }
  .mostread-link {
    font-size: 10px;
  }
}

.blogs-section {
  position: relative;
  overflow: hidden;
}

.blogs-bg {
  background-image: url('../images/blog bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
  opacity: 1;
  z-index: 0;
}

.blog-card {
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  width: 100%;
}


/* Frame setup */
.blog-frame-wrapper {
  position: relative;
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  overflow: hidden;
}

/* Frame image */
.blog-frame {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* Centered photo inside frame */
.blog-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  height: 84%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 2;
}

/* Content */
.blog-content {
  padding: 1.5rem 1rem 8px;
  box-sizing: border-box;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6rem;
}

.blog-card-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 20px;
    font-size: 1rem;
    flex-wrap: wrap;
}

.custom-pagination .page-info {
    font-weight: 600;
    font-family: "Playfair Display", serif;
    color: #333;;
}

.custom-pagination .pagination-buttons {
    display: flex;
    gap: 10px;
}

.custom-pagination a.btn-prev,
.custom-pagination a.btn-next {
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-pagination a.btn-prev:hover,
.custom-pagination a.btn-next:hover {
    background-color: #000;
    color: #fff;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Post Navigation */

/* --- Container --- */
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px 0;
  padding: 20px 0;
}

/* --- WP default nav-links container --- */
.post-navigation .nav-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* --- Button Styles --- */
.post-navigation .nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  border: 1px solid #000;
  border-radius: 8px;
  font-family: "Playfair", serif;
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 220px;
  font-size: 1rem;
  position: relative;
}

/* Hover Effect */
.post-navigation .nav-item:hover {
  background-color: #000;
  color: #fff;
}

/* --- Icons --- */
.post-navigation .nav-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Left arrow hover motion */
.post-navigation .prev-post:hover .nav-icon {
  transform: translateX(-4px);
}

/* Right arrow hover motion */
.post-navigation .next-post:hover .nav-icon {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .post-navigation {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .post-navigation .nav-item {
    width: 100%;
    max-width: 320px;
  }
}



/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .blog-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }
  .blog-card-title {
    font-size: 1.1rem;
  }
  .blog-card-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .blog-frame-wrapper {
    aspect-ratio: 4 / 3;
  }
  
  .blog-card-title {
    font-size: 1rem;
  }
  .blog-card-subtitle {
    font-size: 0.85rem;
  }
}

/* Footer Section */
.footer-section {
  position: relative;
  min-height: 600px;
  padding: 0;
  overflow: visible;
}
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-image: url('../images/footer.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}
.footer-section .container {
  z-index: 1;
}

/* Footer Profile */
.footer-profile-icon {
  width: 100%;
  height: auto;
}
.footer-username {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}
.footer-tagline {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Footer mobile adjustments */
@media (max-width: 767.98px) {
  .footer-bg {
    background-image: none;
    background-color: #2D5749;
  }
  
  .footer-section .container {
    padding: 20px 20px 110px 20px !important;
  }
  
  .footer-profile {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-social {
    justify-content: center;
    margin-bottom: 2rem;
  }
}

/* Footer Social Links */
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}
.footer-social-link:hover {
  transform: scale(1.1);
  color: #ffffff;
}
.footer-social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-social-link.twitter {
  background: #1DA1F2;
}
.footer-social-link.youtube {
  background: #FF0000;
}
.footer-social-link.linkedin {
  background: #0077B5;
}

/* Footer Quick Links */
.footer-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #f0f0f0;
  text-decoration: underline;
}

/* Footer About */
.footer-about-frame {
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-about-photo {
  top: 13%;
  left: 11%;
  width: 80%;
  height: 75%;
  z-index: 2;
  object-fit: cover;
}
.footer-about-text {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  z-index: 10;
}
.footer-about-btn {
  background: #ffffff;
  color: #2C5F2D;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.footer-about-btn:hover {
  background: #f0f0f0;
  color: #2C5F2D;
}

/* Footer Decorative Elements */
.footer-alligator {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 460px;
  height: auto;
  z-index:0;
}

.footer-flamingo {
  position: absolute;
  width: 800px;
  height: auto;
  z-index: 1;
}

.footer-flamingo-1 {
  bottom: 0%;
  right: 0%;
}

.footer-beach-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
  .footer-alligator {
    width: 320px;
  }
  .footer-flamingo {
    width: 600px;
  }
  /* .footer-flamingo-1 {
    bottom: 60px;
    right: 40px;
  } */
}

@media (max-width: 767.98px) {
  .footer-section {
    min-height: auto;
  }
  .footer-section .row {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-links {
    text-align: center;
  }
  .footer-about-frame {
    max-width: 250px;
  }
  .footer-alligator {
    width: 300px;
  }
  .footer-flamingo {
    width: 400px;
  }
  /* .footer-flamingo-1 {
    bottom: 50px;
    right: 30px;
  } */
}

@media (max-width: 575.98px) {
  .footer-alligator {
    width: 200px;
  }
  .footer-flamingo {
    width: 250px;
  }
  /* .footer-flamingo-1 {
    bottom: 40px;
    right: 20px;
  } */
}

/* Adventure Blog Section Styles */
.adventure-heading{
  color: var(--color-primary);
}
.adventure-text{
  color: var(--color-secondary);
}
.adventures-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  z-index: 1;
  margin-bottom: -2px;
}
.adventures-bg {
  background-image: url('../images/blog\ bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  opacity: 1;
  z-index: 0;
  background-attachment: fixed;
}

.adventure-polaroid {
  position: relative;
  padding: 0;
  overflow: visible;
  margin-bottom: 2rem;
}
.adventure-polaroid img {
  border-radius: 0;
}

.adventure-about {
  margin-bottom: 2rem;
}

.adventure-search input[type="text"] {
  border-radius: 8px;
  font-size: 1rem;
}
.adventure-search button {
  border-radius: 8px;
  font-size: 1rem;
}

.adventure-social .btn {
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Featured Frame Wrapper */
.featured-frame-wrapper {
  position: relative;
  display: inline-block;
}

.featured-frame-wrapper img.featured-frame {
  display: block;
  max-width: 100%;
  height: auto;
}

.featured-frame-wrapper img.featured-inner-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.featured-frame-wrapper .featured-overlay-text {
  position: absolute;
  bottom: 15%;
  left: 5%;
  /* transform: translateX(-50%); */
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  word-wrap: break-word;
  width: 90%;
}

/* Adventure Frame Wrapper */
.adventure-frame-wrapper {
  position: relative;
  display: inline-block;
}

.adventure-frame-wrapper img.adventure-frame {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- Horizontal Image --- */

.adventure-frame-wrapper img.adventure-inner-image {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 78%;
  height: 74%;
  transform: translate(-50%, -50%);
  object-fit: fill;
  object-position: top center;
}

/* --- Vertical Image --- */

.adventure-frame-wrapper img.adventure-inner-image-verticle {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 76%;
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: top center;
}

.adventure-frame-wrapper .adventure-overlay-text {
  position: absolute;
  bottom: 15%;
  left: 20%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

/* Adventure Photo Frame Box */
.adventure-photo-frame-box {
  position: relative;
  display: inline-block;
}

.adventure-photo-frame-box img.adventure-bg-frame {
  display: block;
  max-width: 100%;
  height: auto;
}

.adventure-photo-frame-box img.adventure-foreground-photo {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 70%;
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.adventure-photo-frame-box .adventure-text-overlay {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

/* Adventure Pagination */
.adventure-pagination {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 15px;
  font-size: 1rem;
}

.adventure-pagination .adventure-page-info {
  font-weight: 500;
  font-family: "Playfair", serif;
  font-weight: 600;
}

.adventure-pagination .adventure-btn-next {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: 0.3s;
}

.adventure-pagination .adventure-btn-next:hover {
  background-color: #000;
  color: #fff;
}

/* Adventure Responsive Styles */
@media (max-width: 1199.98px) and (min-width: 768px) {
  .adventure-polaroid .col-lg-5 {
    flex: 0 0 42%;
    max-width: 42%;
  }
  .adventure-polaroid .col-lg-7 {
    flex: 0 0 58%;
    max-width: 58%;
  }
  .adventure-polaroid p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .adventure-polaroid h5 {
    font-size: 1.1rem;
  }
  .adventure-frame-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 991.98px) {
  .adventures-section {
    padding-top: 140px;
    padding-bottom: 48px;
  }
  .featured-frame-wrapper {
    max-width: 100%;
  }
  .adventure-frame-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .adventures-section {
    padding-top: 120px;
    padding-bottom: 32px;
    overflow-x: hidden;
  }
  .adventures-section .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
  .adventures-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Stack image and text vertically under 768px */
  .adventure-polaroid .col-lg-5,
  .adventure-polaroid .col-md-5 {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .adventure-polaroid .col-lg-7,
  .adventure-polaroid .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
    text-align: center;
  }
  
  .adventure-frame-wrapper {
    max-width: 70%;
    margin: 0 auto;
  }
  
  .featured-frame-wrapper {
    max-width: 95%;
    margin: 0 auto;
  }
  .featured-frame-wrapper .featured-overlay-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
    font-size: 1rem;
  }
  .adventure-frame-wrapper .adventure-overlay-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .adventures-section {
    padding-top: 100px;
  }
  
  .featured-frame-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  .adventure-frame-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  .featured-frame-wrapper .featured-overlay-text {
    font-size: 0.9rem;
    width: 90%;
  }
  .adventure-frame-wrapper .adventure-overlay-text {
    font-size: 0.9rem;
    width: 90%;
  }
  
  .adventures-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .adventures-section .col-lg-9,
  .adventures-section .col-lg-3 {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Custom Carousel Styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #2c211f86; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
  padding: 0 15px;
  background: none;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    padding: 0 10px;
  }
  
  .carousel-control-prev {
    left: 5px;
  }
  
  .carousel-control-next {
    right: 5px;
  }
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2C211F; /* Primary color from your variables */
  opacity: 0.3;
  margin: 0 5px;
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-indicators {
  bottom: 20px;
}

/* testing purpose */

/* .adventure-frame-wrapper {
  
  width: 300px;
  height: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.adventure-frame {
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  z-index: 2; 
  pointer-events: none;
}

.adventure-inner-image {
  
  z-index: 1;
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: cover;
} */