@charset "utf-8";

        /* RESET & BASE STYLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #F5F5F5;
            overflow-x: hidden;
        }
        
        /* NAVIGATION BAR */
        header {
            padding: 1px /* UP DOWN */40px /* LEFT RIGHT */;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            z-index: 100;
			background-color: #183B4E;
			background-color: rgba(24, 59, 78, 0.75); /* 0.75 = 75% opacity just for background , text and logo not affected*/
        }
        
        .logo-placeholder img{
            width: auto;
            height: 100px;
			max-height: 100%;
			display: block;
			min-height: 80px;
			min-width: 80px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        nav a {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600; /* SemiBold */
            font-size: 20px;
            color: #F3F3E0;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

nav a:hover {
	color: #DDA853;
	transition: color 0.4s ease;
}

/* language listS */
.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #183B4E;
    min-width: 80px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    display: none;
    padding: 10px 0;
    border-radius: 4px;
}

.language-menu li {
    padding: 8px 16px;
    white-space: nowrap;
}

.language-menu a {
    color: #F3F3E0;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.language-menu a:hover {
    color: #DDA853;
}

.language-dropdown:hover .language-menu {
    display: block;
}
        
        /* HERO SECTION */
        .hero {
            height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 80px;
			padding-right: 40px;/* Prevents nav bar overlap */
			position: relative;
            background-image: url('images/image_index_main_image.jpg');        

		}
        
        .hero-text {
            opacity: 0.75;
            text-align: left;
			margin-right: auto;
			margin-left: 250px;
        }
        
        .hero-text h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 64px;
            color: #FFFFFF;
            line-height: 1.2;
        }
        
        .hero-text .bold {
            font-weight: 700; /* Bold */
        }
        
        .hero-text .medium {
            font-weight: 500; /* Medium */
        }

      /* BOOK NOW BUTTON */
        .book-now-btn {
            display: inline-block;
            width: 171px;
            height: 72px;
            background-color: #012B51;
            color: #F3F3E0;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700; /* Bold */
            font-size: 32px;
            text-align: center;
            line-height: 72px; /* Vertically center text */
            text-decoration: none;
            position: absolute;
            bottom: -36px; /* Half height to overlap sections */
            left: 50%;
            transform: translateX(-50%);
            z-index: 50;
        }

.book-now-btn:hover {
	color: #dda853;
	transition: all 0.6s ease;
	box-shadow: inset 0 0 0 1px #012b51;
	background-color: white;

}

        /* RESERVE YOUR MOMENT SECTION */
        .reserve-section {
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-size: 36px;
            color: #183B43;
            padding: 0 20px;
            display: inline-block;
            position: relative;
        }

        .section-header h2::before,
        .section-header h2::after {
            content: '';
            position: absolute;
            height: 1px;
            width: 240px;
            background-color: #000000;
            top: 50%;
        }

        .section-header h2::before {
            right: 100%;
        }

        .section-header h2::after {
            left: 100%;
        }

        /* CONTENT ROW */
        .content-row {
            display: flex;
            align-items: center;
            gap: 60px;
			margin-top: 50px;
        }

        .content-image {
            width: 590px;
            height: 374px;
            background-image: url("images/image_index_first description.jpg"); 
            background-size: cover;
            background-position: center;
        }

        .content-image:hover {
            width: 590px;
            height: 374px;
            background-image: url("images/image_index_first description_overlay.jpg"); 
            background-size: cover;
            background-position: center;
			transition: all 0.6s ease;
        }
        .content-text {
            flex: 1;
        }

        .content-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 32px;
            color: #183B43;
            margin-bottom: 20px;
        }

        .content-text p {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 16px;
            color: #183B43;
            line-height: 1.6;
        }

      /* CONTINUATION SECTION */
        .continuation-section {
            padding: 0 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* SECOND CONTENT ROW */
        .second-content-row {
            display: flex;
            /* Space from first row use margin-top: 60px; if want to use only */
            gap: 60px;
        }

        .second-image {
            width: 520px;
            height: 374px;
            background-image: url("images/image_index_singapore.jpg");
            background-size: cover;
            background-position: center;
            order: 2; /* Moves image to right */
        }

      .second-image:hover {
            width: 520px;
            height: 374px;
            background-image: url("images/image_index_second description_overlay.jpg");
            background-size: cover;
            background-position: center;
            order: 2; /* Moves image to right */
			transition: all 0.6s ease;

        }

        .second-text {
            flex: 1;
            order: 1; /* Moves text to left */
            text-align: center; /* mr shamsul and mr vinod said its bad to use right alignment */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Shared text styles (same as previous) */
        .second-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 32px;
            color: #183B43;
            margin-bottom: 20px;
        }

        .second-text p {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 16px;
            color: #183B43;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* MAP CONTAINER 
        .map-container {
            width: 361px;
            height: 371px;
            background-color: #f5f5f5;
            margin-left: auto; 
            margin-top: 40px;
            border: 1px solid #ddd;
        }
 */

  /* FACILITIES CONTAINER -*/
        .facilities-container {
            width: 100%;
            height: 733px;
            background-color: #012B51; /* Dark blue container */
            position: relative;
            overflow: hidden;
			margin-top: 80px; /* Space from first row */

        }

        /* CONTENT WRAPPER - CENTERED */
        .facilities-content {
            max-width: 1200px;
            height: 100%;
            margin: 0 auto;
            padding: 80px 40px;
            position: relative;
        }

        /* HEADER WITH LINES */
        .facilities-header {
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }

        .facilities-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            font-size: 36px;
            color: #F3F3E0;
            display: inline-block;
            padding: 0 30px;
            position: relative;
        }

        .facilities-header h2::before,
        .facilities-header h2::after {
            content: '';
            position: absolute;
            height: 1px;
            width: 200px;
            background: #F3F3E0;
            top: 50%;
        }

        .facilities-header h2::before {
            right: 100%;
        }

        .facilities-header h2::after {
            left: 100%;
        }

        /* SUBTEXT */
        .facilities-subtext {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            color: #F3F3E0;
            text-align: center;
            margin-bottom: 50px;
        }

             /* CAROUSEL CONTAINER */
 carousel-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
	   justify-content: center;

}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 730px; /* match image width */
  margin: 0 auto 20px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(730px * 3); /* 3 slides */
}


.carousel-slide {
  min-width: 730px;
  height: 400px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 730px;
  height: 400px;
  object-fit: cover;
  justify-content: center;

}

.carousel-slide img:hover {
  filter: brightness(50%);
  transition: all 0.3s ease;
}

/* overlay text for facilities section */



.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #F3F3E0;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
	  color: #DDA853;
	  transition: color 0.6s ease;

}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}


.carousel-dots {
  display: flex;
justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.dot.active {
  background-color: #DDA853;
}

        /* ROOM SECTION IMAGE */
.rooms-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 2rem;	
}

.rooms-image img {
	width: 293px;
	height: 418px;
	object-fit: cover

}

        /* KNOW MORE BUTTON */
        .know-more-btn {
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 20px;
    color: #F3F3E0;
    text-decoration: none;
	text-align: end;
        }

.know-more-btn:hover {
	  color: #DDA853;
	  transition: color 0.6s ease;

}

  /* FOOTER CONTAINER */
        .footer-container {
            height: 510px;
            background-color: #1E1E1E;
            padding: 60px 40px;
            position: relative;
			margin-top: 80px;
        }

        /* FOOTER CONTENT GRID */
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 60px;
            height: 100%;
			grid-template-columns: 1fr 1fr; /* define 2 equal columns */

        }

        /* LEFT SIDE - TERMS LIST */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-link {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600; /* SemiBold */
            font-size: 20px;
            color: #F3F3E0;
            text-decoration: none;
        }

.footer-link:hover {
	color: #DDA853;
	transition: color 0.4s ease;
}

        /* RIGHT SIDE - LOGO & FORM */
        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .logo-footer {
            width: 150px;
            height: 60px;
            background: transparent;
            margin-bottom: 30px;
			display: flex;
            justify-content: center;
            align-items: center;
			
        }

.logo-footer img {
  max-width: 200%;
  max-height: 200%;
  object-fit: contain;
  display: block;
}

        .connect-text {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 16px;
            color: #F3F3E0;
            margin-bottom: 20px;
			text-align: right;
        }

        /* FORM STYLES */
        .footer-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 400px;
        }

        .form-input {
            background: transparent;
            border: 1px solid #F3F3E0;
            padding: 12px;
            color: #F3F3E0;
            font-family: 'Montserrat', sans-serif;
        }

        .form-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        /* SUBMIT BUTTON */
        .submit-btn {
            background: #F3F3E0;
            color: #1E1E1E;
            border: 1px solid #F3F3E0;
            border-radius: 20px;
            padding: 8px 25px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
        }

.submit-btn:hover {
	color: #DDA853;
	transition: all 0.6s ease;
	box-shadow: inset 0 0 0 1px #;
	background-color: white;
}

        /* SOCIAL ICONS */
        .social-icons {
            display: flex;
            gap: 25px;
        }

        .social-icon {
            width: 24px;
            height: 24px;
        }

        .social-icon img{
            width: 24px;
            height: 24px;
        }

        /* FOOTER DECO */
.footer-corner-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px; 
  height: auto;
  object-fit: contain;
}

.footer-corner-img2 {
  position: absolute;
  top: -5.3px;
  right: 0;
  width: 120px; 
  height: auto;
  object-fit: contain;
}
        /* COPYRIGHT */
        .copyright {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 12px;
            color: #F3F3E0;
        }

/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */
/* ABOUT PAGE */

/* About Page Hero */
.about-hero {
    display: flex;
    height: 844px;
    position: relative;
}

.about-hero-image img{
    width: 952px;
    height: 100%;
    background-color: #ddd; /* Placeholder color */
    background-size: cover;
    background-position: center;
	object-fit: cover;
}

.about-hero-text {
    position: absolute;
    left: 1080px;
    top: 349px;
}

.about-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px; /* Match index page hero size */
    color: #183B43; /* preferred color */
    line-height: 1.2;
}

/* About Content Sections */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    position: relative;
}

.image-text-pair-0 {
	margin-top: -374px; /* the total height of the second img so it can align well */
}
.image-text-pair {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Aligns top edges */
}

.pair-image {
    flex: 0 0 420px; /* Fixed width for image */
}

.pair-text p{
    flex: 1;
    padding-top: 225px; /* vertical alignment */
    width: 374px; /* specified width */
}

.image-text-pair-2 {
    display: flex;
    gap: 20px;
    align-items: flex-end; /* Aligns top edges */
	align-content: flex-end;
}

.pair-image-2 {
    flex: 0 0 640px; /* Fixed width for image */
}

.pair-text-2 p{
    flex: 1;
	text-align: right;
	width: 420px;
	padding-top: 225px;
}


.about-image-1 img{
    background-color: #eee; /* Placeholder color */
    background-size: cover;
    background-position: center;
width: 311px; height: 772px;
object-fit: cover;

}

.about-image-2 img{
    background-color: #eee; /* Placeholder color */
    background-size: cover;
    background-position: center;
width: 530px; height: 374px; margin-left: 650px;
object-fit: cover;

}

.about-image-3 img{
    background-color: #eee; /* Placeholder color */
    background-size: cover;
    background-position: center;
	display: flex;
	margin-left: 100px;
width: 420px; height: 376px; margin-top: auto;
object-fit: cover;

}

.about-image-4 img{
    background-color: #eee; /* Placeholder color */
    background-size: cover;
	display: flex;
width: 640px; height: 376px; margin-top: 80px;
object-fit: cover;

}

/* Text Styles */
.cormorant-large {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    text-align: center;
    max-width: 723px;
    margin: 0 auto;
    line-height: 1.5;
}

.montserrat-regular {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Positioning Classes */
.centered-text {
    text-align: center;
	padding-top: 80px;
}

.image-left {
    display: flex;
    gap: 20px;
    padding-top: 80px;
}

.image-left .about-text {
    width: 309px;
}

.right-aligned-text {
    text-align: right;
    width: 380px;
    margin-left: 800px;
    padding-top: 20px; /* same as gap distance for the first img */
}

.last-text {
    text-align: right;
    width: 420px;
    padding-top: 20px;
}

/* Reuse existing classes where possible */
.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}


/* CONTACT PAGE */
/* CONTACT PAGE */
/* CONTACT PAGE */
/* CONTACT PAGE */
/* CONTACT PAGE */

/* Contact Hero - Reversed from About page */
.contact-hero {
    display: flex;
    height: 844px;
    position: relative;
}

.contact-hero-image img {
    width: 952px;
    height: 100%;
    object-fit: cover;
	    position: absolute;
    left: 580px;
}

.contact-hero-text {
    position: absolute;
    left: 200px;
    top: 349px;
	text-align: right;
}

.contact-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    color: #183B43;
    line-height: 1.2;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.form-section {
    margin-bottom: 60px;
}

.form-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 32px;
    color: #183B43;
    margin-bottom: 40px;
}

.form-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    color: #183B43;
    margin-bottom: 15px;
}

.name-fields {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.name-fields .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 40px;
}

.underline-input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #183B43;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background: transparent;
    outline: none;
}

.underline-input::placeholder {
    color: #999;
}

.message-input {
    min-height: 100px;
    resize: vertical;
}

.submit-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.note-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #183B43;
    width: 290px;
    text-align: left;
    line-height: 1.6;
}

.send-btn {
    display: inline-block;
    width: 140px;
    height: 60px;
    background-color: #012B51;
    color: #F3F3E0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    line-height: 60px;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.send-btn:hover {
    color: #dda853;
    transition: all 0.6s ease;
    box-shadow: inset 0 0 0 1px #012b51;
    background-color: white;
}

        /* Gallery SECTION */
        /* Gallery SECTION */
        /* Gallery SECTION */
        /* Gallery SECTION */

.hero-gallery {
            height: 50vh;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 80px;
			padding-right: 40px;/* Prevents nav bar overlap */
			position: relative;
            background-image: url('images/image_gallery_main.png');
			filter: brightness(50%);
		}

/* GALLERY GRID STYLES */
.gallery-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
	align-content: center;
}

.grid-item {
    overflow: hidden;
    aspect-ratio: 4/3; /* Standard photo ratio */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-item:hover img {
    transform: scale(1.03);
}

/* FACILITIES SECTION */
/* FACILITIES SECTION */
/* FACILITIES SECTION */
/* FACILITIES SECTION */

.facilities-hero {
    text-align: center;
    padding: 100px 20px 60px;
	background-color: #1E1E1E;
	margin-bottom: 80px;
}

.facilities-hero-logo {
    width: 180px;
    height: auto;
}

.facilities-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #F3F3E0;
    letter-spacing: 2px;
}

/* FACILITIES SECTION */
.facilities-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 150px 0px;
	margin-top: 60px;
}

.facility-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.facility-text {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
}

.facility-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #183B43;
    margin-bottom: 10px;
}

.facility-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.facility-image {
    flex: 1;
}

.facility-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hamburger Animation */
/* Hamburger Animation */
/* Hamburger Animation */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Initially hide hamburger on desktop */
.hamburger {
    display: none;
}


















































/* ==================== */
/* RESPONSIVE STYLES */
/* ==================== */
/* ==================== */
/* RESPONSIVE STYLES */
/* ==================== *//* ==================== */
/* RESPONSIVE STYLES */
/* ==================== *//* ==================== */
/* RESPONSIVE STYLES */
/* ==================== *//* ==================== */
/* RESPONSIVE STYLES */
/* ==================== */
/* Tablet (768px and below) */
@media (max-width : 1251px ){
	.about-hero {
		right: 400px;
	}
	
	.centered-text {
		padding-bottom: 80px;
	}
	/* ONLY targets elements inside your special div */
/* Targets ONLY elements inside your special div */
.im-swear-im-about-to-crash-out .about-section {
  display: block !important;
  width: 100% !important;
  position: static !important;
}

/* Makes ALL images full-width with auto height */
.im-swear-im-about-to-crash-out .about-image-1 img,
.im-swear-im-about-to-crash-out .about-image-2 img,
.im-swear-im-about-to-crash-out .about-image-3 img,
.im-swear-im-about-to-crash-out .about-image-4 img {
  width: 100% !important;
  height: auto !important;
  max-height: 400px; /* Optional max height */
  object-fit: contain !important;
  margin: 0 !important;
  display: block !important;
}

/* Resets all text containers */
.im-swear-im-about-to-crash-out .about-text,
.im-swear-im-about-to-crash-out .montserrat-regular,
.im-swear-im-about-to-crash-out .right-aligned-text,
.im-swear-im-about-to-crash-out .pair-text,
.im-swear-im-about-to-crash-out .pair-text-2 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 20px 0 !important;
  padding: 0 15px !important;
  text-align: center !important;
  float: none !important;
}

/* Kills all special positioning */
.im-swear-im-about-to-crash-out .image-left,
.im-swear-im-about-to-crash-out .image-text-pair-0,
.im-swear-im-about-to-crash-out .image-text-pair,
.im-swear-im-about-to-crash-out .image-text-pair-2 {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}
	
/* Fix for image-text-pair sections ONLY THIS IS MY SECOND FIX*/
.im-swear-im-about-to-crash-out .image-text-pair,
.im-swear-im-about-to-crash-out .image-text-pair-2 {
  display: flex !important;
  flex-direction: column !important;
}

.im-swear-im-about-to-crash-out .pair-image,
.im-swear-im-about-to-crash-out .pair-image-2 {
  order: 1 !important; /* Forces image first */
  width: 100% !important;
  flex: 0;
}

.im-swear-im-about-to-crash-out .pair-text,
.im-swear-im-about-to-crash-out .pair-text-2 {
  order: 2 !important; /* Forces text second */
  width: 100% !important;
  text-align: center !important;
  padding: 20px 15px !important;
  margin: 0 !important;
}

/* Reset any existing positioning */
.im-swear-im-about-to-crash-out .pair-text p,
.im-swear-im-about-to-crash-out .pair-text-2 p {
  width: auto !important;
  padding-top: 0 !important;
  text-align: center !important;
}

/* Fix ONLY the problematic text spacing in pair-text-2 THIS IS MY THIRD FIX!!!!*/
.im-swear-im-about-to-crash-out .pair-text-2 {
  margin-top: 20px !important; /* Consistent spacing */
  padding-top: 0 !important;
}

/* Remove any extra padding/margins from paragraphs */
.im-swear-im-about-to-crash-out .pair-text-2 p {
  margin: 0 !important;
  padding: 0 !important;
}
	
/* COMPLETELY REMOVE BACKGROUNDS FROM ALL IMAGES FOURTH FIX!!!!*/
.im-swear-im-about-to-crash-out img {
  background: none !important;
  background-color: transparent !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Remove any potential parent element backgrounds */
.im-swear-im-about-to-crash-out .about-image-1,
.im-swear-im-about-to-crash-out .about-image-2,
.im-swear-im-about-to-crash-out .about-image-3,
.im-swear-im-about-to-crash-out .about-image-4 {
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
	}

@media (max-width : 1140px ){
	.about-hero {
		right: 300px;	
	}
}
	


@media (max-width : 982px ){
    /* Navigation - Hamburger Menu */
    header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        display: none; /* Hidden by default */
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .language-dropdown {
        margin-top: 15px;
    }
	
		.section-header h2::before,
        .section-header h2::after {
			width: 0
	}

    /* Hamburger Icon */
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 30px;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #F3F3E0;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    /* Hero Sections */
	.hero {
		padding-top: 100px;
		padding-left: 50px;
	}
    
	.hero img {
		background-position: left;
	}
	
	.contact-hero, .about-hero {
		position: relative;
    }
	
	/* FIX RESPONSIVENESS */
	.about-hero-image img {
		width: 100%;
		left: 200px;
		z-index: 1;
	}
	
	.about-hero {
		right: 0;
	}
	
		.about-hero-text {
		left: 10%;
		padding: 0 20px;

	}
	
	.contact-hero img {
		left: auto;
		z-index: 1;
	}
	
	.contact-hero-text h1{
		color: #f3f3e0;	
	}
	
	.contact-hero-image img {
		width: 100%;
	}
	
	.about-hero-text {
		padding: 0 20px;

	}
	
	.about-hero-text h1{
		color: #f3f3e0;
	}
	
	.hero-gallery {
      	height: 70vh;
		padding-top: 100px;
    }
	
	.contact-hero-text {
		left: 40px;
		z-index: 2;		
	}
	

	.hero-text {
		text-align: left;
		margin-left: 0;
        padding: 0 20px;
		
	}
	
	.contact-hero-text {
        margin-left: 0;
        padding: 0 20px;
		text-align: center;
    }

    /* Content Rows */
    .content-row, .second-content-row, .facility-row {
        flex-direction: column;
        gap: 30px;
    }

    .content-image, .second-image {
        width: 100%;
        height: 300px;
    }
	
	.rooms-container {
		transform: scale(0.8);
		gap: 10px;
	}

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form Sections */
    .name-fields {
        flex-direction: column;
        gap: 20px;
    }

    .submit-section {
        flex-direction: column;
        gap: 20px;
    }

    .note-text {
        width: 100%;
        text-align: center;
    }

    .send-btn {
        margin-left: 0;
    }
	
	.footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
	
	.footer-container {
        height: 100%;
    }    
    .footer-right {
        align-items: center;
        text-align: center;
    }
    
    .connect-text {
        text-align: center !important;
    }
    
    .footer-form {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .submit-btn {
        width: 100%;
    }
}
	

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Navigation */
    .logo-placeholder img {
        height: 70px;
    }

    /* Hero Sections */
	.hero img {
		display: flex;
	}
	
	.hero-text {
		margin-right: 10px;
	}
	
    .hero-text h1, 
    .contact-hero-text h1, 
    .about-hero-text h1 {
        font-size: 48px;
    }
	
	
	
	.rooms-container {
		transform: scale(1.0);
		gap: 200px;
	}
	
	.know-more-btn {
		display: block;
		margin-top: 15px;
		position: static;
	}

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Facilities Section */
    .facilities-section {
        padding: 0 20px;
    }

}
