
/* ==========================================
   UNIVERSAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background-color: #f4f7f6; /* Clean, light gray-white */
    color: #333;
}

h1, h2 {
    font-family: 'Open Sans', sans-serif;
    color: #119994; /* Reeca Teal */
}

/* ==========================================
   NAV STYLES
   ========================================== */
nav {
    background-color: #119994;
    width: 100%;
}

.navcontainer {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    gap: 15px;
}

.navlogo {
    
    border-radius: 15px;
    padding: 5px;
    background-color: white;
    display: flex;
    align-items: center;
}

#logo {
    height: 100px;
    width: auto;
}

.navmismo {
    border-radius: 20px;
    padding: 15px 20px;
    background-color: #32d1cc;
    transition: 0.3s;
}

.navmismo:hover {
    background-color: #06bab4;
    transform: translateY(-2px);
}

.navmismo a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

/* ==========================================
   HERO STYLES
   ========================================== */
.hero-section {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto; 
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.hero-container {
    display: flex;
    width: 100%;
    padding: 40px;
    align-items: flex-end; /* Keeps content box at the bottom */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.hero-content {
    max-width: 450px;
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.hero-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
}

.hero-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #119994;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-btn:hover {
    background-color: #06bab4;
    transform: translateY(-2px);
}

/* ==========================================
   CONTENT SECTION
   ========================================== */
.welcome-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
}

hr {
    border: 0;
    height: 2px;
    background-color: #ccc;
    width: 85%;
    margin: 0 auto;
}





/* ==========================================
   AMENITIES & ZIGZAG STYLES
   ========================================== */
.info-block {
    padding: 60px 0;
    width: 100%;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.info-block.flipped .info-container {
    flex-direction: row-reverse;
}

.info-text {
    flex: 1;
    text-align: left;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #119994;
}

.info-text p {
    color: black;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.amenities {
    list-style: none !important; /* Turn off the broken browser bullets */
    margin-top: 20px;
    padding-left: 0;             /* Reset padding since we're doing it manually */
}

.amenities li {
    color: black;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;          /* Needed to position our custom dot */
    padding-left: 25px;          /* Create space for the custom dot */
    display: block !important;   /* Treat it like a regular block of text */
    line-height: 1.4;
}

/* This creates the black circle manually */
.amenities li::before {
    content: "";                 /* Required to make the element appear */
    position: absolute;
    left: 0;
    top: 6px;                    /* Adjust this to move the dot up or down */
    width: 8px;                  /* Size of the dot */
    height: 8px;                 /* Size of the dot */
    background-color: black;     /* Color of the dot */
    border-radius: 50%;          /* Makes the square a circle */
}

#queries {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.question-item {
    margin-bottom: 25px; 
    border-left: 4px solid #119994; 
    padding-left: 15px;
}

.question-item p {
    color: black;
    font-size: 1.1rem;
    margin-bottom: 5px; 
}

.question-item span {
    color: #555; 
    display: block;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c3e50; /* Darker professional gray-blue */
    color: white;
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Helps on mobile */
    gap: 30px;
}

.footer-info, .footer-contact, .footer-socials {
    flex: 1;
    min-width: 250px;
}

.footer-info h3, .footer-contact h4, .footer-socials h4 {
    color: #119994; /* Your Brand Teal */
    margin-bottom: 20px;
}

.footer-contact p, .footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-socials a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #32d1cc;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #bdc3c7;
}

/* --- FIXED SPRITE CODE --- */

.pricing-table {
    width: 100%;
    border-collapse: collapse; /* Merges borders into single lines */
    margin: 25px auto;
    font-size: 1rem;
    border-radius: 15px 15px 0 0;
    overflow: hidden; /* Keeps the rounded corners */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	width: 80vw;
	
}

.pricing-table thead tr {
    background-color: #119994; /* Your Brand Teal */
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.pricing-table th, .pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
}

/* Zebra Stripes: Makes it easier to read across floors */
.pricing-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

/* Hover effect: Highlights the row the user is looking at */
.pricing-table tbody tr:hover {
    background-color: #f1f1f1;
    color: #119994;
    cursor: pointer;
}
.extras-box {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #119994;
}

.addon-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}
#infotable{
	margin: auto;
	text-align: center;
	font-size: 1rem;
	color: #ccc;
	
}
.cta-container {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
}

.book-messenger-btn {
    display: inline-block;
    background-color: #0084FF; /* Official Messenger Blue */
    /* background-color: #119994; /* UNCOMMENT THIS to use your Brand Teal instead */
    color: white;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px; /* Rounded pill shape */
    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.book-messenger-btn:hover {
    transform: translateY(-5px); /* Moves up slightly */
    box-shadow: 0 15px 25px rgba(0, 132, 255, 0.4);
    background-color: #0073e6; /* Slightly darker on hover */
}

/* Mobile sizing */
@media (max-width: 600px) {
    .book-messenger-btn {
        width: 90%;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
}

/* The Slideshow Container ID */
    #slideshow-container {
      position: relative;
      width: 600px;   
      height: 400px;  
      overflow: hidden;
      border-radius: 8px;
    }

    /* Base styles for both images stacked on top of each other */
    #slideshow-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      /* Total loop time = 12 seconds (6 seconds per image) */
      animation: holdAndFadeIn 12s infinite ease-in-out; 
    }

    /* Second image waits exactly 6 seconds to start so they take turns */
    #slideshow-container img:nth-child(2) {
      animation-delay: 6s;
    }

    /* 
      Timeline math based on a 12-second total loop:
      0s to 5s (0% to 41.6%)   = Holds 100% visible (5 seconds)
      5s to 6s (41.6% to 50%)  = Fades out to 0% opacity (1 second)
      6s to 12s (50% to 100%)  = Stays hidden while the other image plays
    */
    @keyframes holdAndFadeIn {
      0% { opacity: 1; }
      41.6% { opacity: 1; }  /* Holds solid for 5 seconds */
      50% { opacity: 0; }     /* Fades out over 1 second */
      100% { opacity: 0; }    /* Stays invisible */
    }
	
	
	
	
	
	/* ==========================================
   MOBILE RESPONSIVE OVERRIDES (Samsung A53)
   ========================================== */
@media (max-width: 768px) {
    /* --- Universal Settings --- */
    body {
        /* Prevents random horizontal side-scrolling gaps */
        width: 100%;
        overflow-x: hidden; 
    }

    /* --- Navigation Bar --- */
    .navcontainer {
        flex-direction: column; /* Stack logo and buttons vertically */
        gap: 12px;
        padding: 15px 10px;
    }

    .navlogo {
        padding: 4px;
    }

    #logo {
        height: 75px; /* Scale down oversized desktop logo */
        width: auto;
    }

    .navmismo {
        width: 100%; /* Make menu buttons stretch full-width for easy finger-tapping */
        text-align: center;
        padding: 12px 15px;
    }

    /* --- Hero Layout Container --- */
    .hero-section {
        width: 100%;
        border-radius: 0px; /* Flush layout looks cleaner on compact mobile displays */
        margin: 0 0 20px 0;
        min-height: auto; /* Allow content volume to dictate scale naturally */
    }

    .hero-container {
        padding: 15px;
        align-items: center; /* Center the text box directly on the viewport */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3));
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .hero-content h1 {
        font-size: 1.5rem; /* Downsize large headings */
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .hero-btn {
        width: 100%; /* Formats call-to-action button to fill container footprint */
        text-align: center;
        padding: 12px 20px;
    }

    /* --- Core Sections & Alternating Grids --- */
    .welcome-section {
        padding: 40px 15px;
    }

    .welcome-section p {
        font-size: 1.05rem;
    }

    .info-block {
        padding: 30px 0;
    }

    .info-container, 
    .info-block.flipped .info-container {
        flex-direction: column; /* Force text and image components to stack uniformly */
        gap: 25px;
        padding: 0 15px;
    }

    .info-text, 
    .info-image {
        width: 100%;
        flex: none;
    }

    .info-text h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .info-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* --- Tables & Structured Data Containers --- */
    .pricing-table {
        width: 100%; /* Drop restrictive viewport width assignments */
        display: block; 
        overflow-x: auto; /* Allows table to scroll sideways if text data overflows */
        white-space: nowrap; /* Keeps rows neat and aligned on one plane */
        -webkit-overflow-scrolling: touch; /* Enhances swipe physics natively on Android Chrome */
        font-size: 0.9rem;
    }

    .pricing-table th, 
    .pricing-table td {
        padding: 10px 12px;
    }

    /* --- Footer Components --- */
    .footer-container {
        flex-direction: column; /* Line items adjust into vertical cards */
        gap: 25px;
        padding: 0 10px;
    }

    .footer-info, 
    .footer-contact, 
    .footer-socials {
        min-width: 100%;
    }
}