/* Define a variable for the consistent section gap */
:root {
    --section-gap: 50px; 
}

/* --- EXISTING RESORT STYLES (WITH UNIFIED GAP) --- */
.resort-section {
    width: 950px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* CHANGE: Apply consistent margin for the entire component */
      margin: 0 auto 0; /* Top margin from surrounding elements, 0 bottom */
    font-family: 'Poppins', sans-serif;
}

.resort-header {
    display: flex;
    align-items: center;
    padding: 0px 0px;
    border-left: 5px solid orange;
}

.resort-number {
    font-size: 48px;
    font-weight: 900;
    color: orange;
    margin-right: 15px;
}

.resort-name {
    font-size: 40px;
    color: #111;
    font-weight: 900;
    margin: 0; 
}

/* 🎯 FIX: This is the first main section component after the resort-section header. */
/* We'll apply the gap *after* this component to the next one (room-container). */
.about_area {
    /* REMOVED: margin-top: 50px !important; */
    margin-top: 0; /* Remove gap between resort-header and about_area */
    padding-top: 0;
    /* NEW: Add consistent bottom gap AFTER the about_area component */
    margin-bottom: 0;
}

.resort-image {
    width: 9cm;
    height: 9cm;
    object-fit: cover;
    display: inline-block;
    margin: 5px;
}

/* --- ROOM CARD STYLES (WITH UNIFIED GAP) --- */

/* Container for the whole layout */
.room-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    /* CHANGE: Apply consistent margin-bottom for a uniform gap to the next section */
    margin: 20px auto var(--section-gap); 
    margin-top: 0 !important;
    height: 400px;
}

/* ... rest of the unchanged styles (room-container .room-card, .overlay-text, etc.) ... */

/* Base style for both room cards */
.room-container .room-card {
    flex: 1;
    position: relative; /* CRITICAL: Positioning context */
    color: white;
    overflow: hidden; 
    transition: none;
    cursor: pointer;
}

/* Style for the image tag (Highly Specific) */
.room-container .room-card .room-image {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
    
    /* 🛠️ FIX FOR THE BLUE LINE/GAP */
    display: block; 
}

/* Gradient Overlay Effect */
.room-container .room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
}

/* Positioning and styling for the text overlay */
.room-container .overlay-text {
    position: absolute; 
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 3; 
}

.room-container .room-name {
    font-size: 2.2em;
    margin: 5px 0 0 0;
    font-weight: 700;
}

.room-container .price {
    font-size: 1.1em;
    margin: 0;
    opacity: 0.9;
}

/* Optional: Subtle Hover Effect */
.room-container .room-card:hover {
    transform: none;
}

/* Optional: Responsive adjustment for small screens */
@media (max-width: 768px) {
    .room-container {
        flex-direction: column;
        height: auto;
    }
    .room-container .room-card {
        height: 300px;
    }
}
.faq-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-top: 3px solid #ff6600;
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    color: #ff6600;
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

/* Question Button */
.faq-question {
    width: 100%;
    text-align: left;
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e65c00;
}

/* Answer (hidden by default) */
.faq-answer {
    display: none;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 5px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}
.thrilliopia-btn {
  display: inline-block;
  background-color: #f05454; /* Thrilliopia brand color */
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(240, 84, 84, 0.3);
}

.thrilliopia-btn:hover {
  background-color: #d84343;
  box-shadow: 0 6px 15px rgba(240, 84, 84, 0.5);
  transform: translateY(-2px);
}



/* UNIVERSAL RESORT LAYOUT FIX */
.resort-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    align-items: flex-start;
}

/* LEFT: Two Images */
.resort-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 45%;
}

.resort-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 5px;
}

/* RIGHT: Heading + Description */
.resort-right {
    width: 50%;
}

/* Heading */
.resort-heading {
    display: flex;
    align-items: center;
    border-left: 5px solid orange;
    padding-left: 15px;
    margin-bottom: 15px;
}

.resort-number {
    font-size: 50px;
    font-weight: 900;
    color: orange;
    margin-right: 15px;
}

.resort-name {
    font-size: 36px;
    font-weight: 900;
    white-space: nowrap;
}

/* Description */
.resort-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* For Responsive Screens */
@media (max-width: 900px) {
    .resort-block {
        flex-direction: column;
    }
    .resort-left, .resort-right {
        width: 100%;
    }
}
.line-button {
    /* Button Appearance */
    display: inline-block; /* Essential for padding and width to work */
    padding: 12px 25px; /* Adds vertical and horizontal padding */
    text-align: center;
    text-decoration: none; /* Removes the underline */
    
    /* Color and Background */
    background-color:rgb(255, 132, 0); /* Your desired orange color */
    color: #FFFFFF !important; /* Forces the text to be white */
    border: none; /* Ensures no border interferes */
    border-radius: 5px; /* Adds slight rounding */
    
    /* Font */
    font-size: 16px; 
    font-weight: 500;
    
    /* Transition for hover effect */
    transition: background-color 0.3s ease;
}

/* Hover Effect */
.line-button:hover {
    background-color: rgb(255, 132, 0); /* A slightly darker shade of orange on hover */
    color: #FFFFFF !important;
    text-decoration: none;
}
.top-resort-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: black;
    margin-top: 50px;
    margin-bottom: 30px;
}
.footer_widget_wrap {
    display: flex;
    flex-wrap: nowrap;    /* keep in one row */
    justify-content: space-between;
    gap: 30px;
}
.footer_widget {
    flex: 1;              /* equal width */
}
@media(max-width: 992px){
  .footer-flex {
    flex-wrap: wrap;
  }
  .footer-flex .footer_widget {
    flex: 0 0 48%;
    margin-bottom: 20px;
  }
}

@media(max-width: 576px){
  .footer-flex .footer_widget {
    flex: 0 0 100%;
  }
}




/* Make resort name clickable without changing design */
.resort-name a {
  color: inherit;
  text-decoration: none;
}

.resort-name a:hover {
  text-decoration: underline;
}
.room-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.submenu li a {
    display: block;
    padding: 10px 18px;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word;

    line-height: 1.4;
}
.main-menu ul.submenu {
    width: 400px !important;
    min-width: 400px !important;
    max-width: 400px !important;

    background: #fff;
    padding: 15px 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);

    white-space: normal !important;
}
.main-menu ul.submenu li a {
    display: block !important;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;

    line-height: 1.6;
    padding: 10px 20px;

    text-align: left;
}
/* MOBILE ONLY: hide Pages submenu */
@media (max-width: 992px) {

  .has-submenu > .submenu {
    display: none;
  }

  .has-submenu.open > .submenu {
    display: block;
  }
}
/* -----------------------------------
   THEME VARIABLES (MINT THEME)
----------------------------------- */

:root {
  --bg-light: #f2fff6;
  --bg-gradient: linear-gradient(135deg, #e0f9e8, #c8f1d8);
  --heading-color: #2b5d42;
  --text-color: #3a6f57;
  --card-bg: #f6fff9;
  --shadow: rgba(0,0,0,0.08);
}

/* -----------------------------------
   INTRO SECTION
----------------------------------- */

.corp-intro {
  max-width: 950px;
  margin: 50px auto;
  padding: 35px 30px;
  background: var(--bg-gradient);
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--shadow);
}

.corp-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 15px;
}

/* -----------------------------------
   CORPORATE CONTENT SECTIONS
----------------------------------- */

.corp-section {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 50px 20px;
  background: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 6px 22px var(--shadow);
  transition: 0.3s ease;
}

.corp-section:hover {
  transform: translateY(-4px);
}

/* IMAGE AREA */
.corp-img {
  flex: 1;
}

.corp-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* CONTENT AREA */
.corp-content {
  flex: 1.2;
}

.corp-content h2 {
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--heading-color);
}

.corp-content ul {
  margin-bottom: 15px;
}

.corp-content li {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.corp-content p {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.7;
}

/* IMAGE LEFT & RIGHT */
.corp-img.left {
  order: 1;
}

.corp-img.right {
  order: 2;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 900px) {
  .corp-section {
    flex-direction: column;
    text-align: center;
    padding: 35px 20px;
  }

  .corp-img.left,
  .corp-img.right {
    order: 0;
  }
}
  .container {
        width: 90%;
        max-width: 1100px;
        margin: auto;
        padding: 1px 0;
    }

    /* HERO SECTION */
    .hero {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(to right, #e8f3ff, #ffffff);
        border-radius: 12px;
        margin-bottom: 50px;
    }
    .hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #0a3d62;
    }
    .hero p {
        font-size: 18px;
        color: #333;
        max-width: 800px;
        margin: auto;
    }

    /* INTRO SECTION */
    .intro {
        font-size: 18px;
        margin-bottom: 50px;
        color: #444;
    }

    /* SECTION HEADING */
    h2 {
        font-size: 30px;
        margin-top: 60px;
        color: #0a3d62;
        position: relative;
    }
    h2::after {
        content: "";
        width: 60px;
        height: 4px;
        background: #0a3d62;
        position: absolute;
        left: 0;
        bottom: -10px;
        border-radius: 3px;
    }

    /* IMAGE + CONTENT BLOCKS */
    .section {
        display: flex;
        align-items: center;
        gap: 30px;
        margin: 40px 0;
        flex-wrap: wrap;
    }
    .section img {
        width: 500px;
        max-width: 100%;
        height: 400px;
        border-radius: 12px;
        object-fit: cover;
    }
    .section-content {
        flex: 1;
        font-size: 17px;
    }

    /* ALTERNATE alignment */
    .reverse {
        flex-direction: row-reverse;
    }
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 28px;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev { left: 15px; }
.next { right: 15px; }
.multi-carousel-container {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.multi-carousel {
    overflow: hidden;
    width: 100%;
}

.multi-carousel-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s ease-in-out;
}

/* ⭐ SAME SIZE IMAGES */
.multi-carousel-track img {
    width: 200px;       /* all images same width */
    height: 250px;      /* all images same height */
    object-fit: cover;  /* crop properly */
    border-radius: 10px;
    background: #ccc;   /* prevents flicker */
}

/* Navigation buttons */
.m-btn {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 22px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.m-btn:hover {
    background: rgba(0,0,0,0.8);
}
.carousel-slide img,
.multi-carousel-track img {
    width: 250px;
    object-fit: cover;
}
.no-underline,
.no-underline::before,
.no-underline::after {
    border: none !important;
    text-decoration: none !important;
    background: none !important;
    box-shadow: none !important;
}
.footer_nav .submenu {
    display: none !important;
}

.footer_nav .has-submenu.open .submenu {
    display: block !important;
}
.single_instagram {
    position: relative;
}

.single_instagram a {
    display: block;
    position: relative;
}

.img-name {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.6);
    pointer-events: none; /* text does NOT block the click */
}

.single_instagram a:hover .img-name {
    text-decoration: underline;
}
.single_instagram {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* makes the box a perfect square */
    overflow: hidden;
}

.single_instagram img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills the square without stretching */
    display: block;
    border-radius: 6px; /* optional, remove if you want sharp edges */
}

.img-name {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.6);
    pointer-events: none;
}
