/* Non-Critical CSS - Below-the-Fold Styles */
/* Load this file asynchronously after initial page render */

/* Utility Classes for Below-the-fold Sections */

/* Layout */
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.bg-primary-dark { background-color: var(--primary-dark); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }
.z-10 { z-index: 10; }

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-accent-gold { color: var(--accent-gold); }
.text-white { color: white; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-secondary-dark\/80 { color: rgba(22, 33, 62, 0.8); }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-xs { font-size: 0.75rem; }

/* Font Weights */
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.font-playfair { font-family: 'Playfair Display', serif; }

/* Spacing */
.mb-8 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }

/* Text Styles */
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.2; }

/* Backgrounds */
.bg-secondary-dark { background-color: var(--secondary-dark); }
.bg-accent-gold\/10 { background-color: rgba(201, 169, 97, 0.1); }
.bg-accent-gold\/20 { background-color: rgba(201, 169, 97, 0.2); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Borders */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* Padding */
.p-6 { padding: 1.5rem; }
.p-4 { padding: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Dimensions */
.w-full { width: 100%; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }

/* Flexbox */
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.gap-6 { gap: 1.5rem; }
.gap-4 { gap: 1rem; }

/* Spacing Utilities */
.space-y-4 > * + * { margin-top: 1rem; }
.divide-y > * + * { border-top: 1px solid rgba(255, 255, 255, 0.1); }

/* Table Styles - Configuration Section */
table {
    width: 100%;
    border-collapse: collapse;
}

thead tr {
    background-color: rgba(201, 169, 97, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    padding: 1rem 1.5rem;
    text-align: left;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

th:last-child {
    text-align: right;
}

tbody {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

td {
    padding: 1rem 1.5rem;
    color: white;
}

td:last-child {
    text-align: right;
    font-weight: 500;
    font-size: 1.125rem;
}

/* Additional Flexbox & Display */
.flex-col { flex-direction: column; }
.block { display: block; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Hover States */
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:border-accent-gold\/30:hover { border-color: rgba(201, 169, 97, 0.3); }

/* Transitions */
.transition-colors { 
    transition-property: color, background-color, border-color;
}
.transition-all { 
    transition-property: all;
}
.duration-300 { 
    transition-duration: 300ms;
}

/* Display Utilities */
.hidden { display: none; }

/* Small Screens (640px+) */
@media (min-width: 640px) {
    .sm\:text-4xl { font-size: 2.25rem; }
}

/* Medium Screens (768px+) */
@media (min-width: 768px) {
    .md\:py-32 { 
        padding-top: 8rem; 
        padding-bottom: 8rem; 
    }
    .md\:px-8 { 
        padding-left: 2rem; 
        padding-right: 2rem; 
    }
    .md\:px-12 { 
        padding-left: 3rem; 
        padding-right: 3rem; 
    }
    .md\:text-base { font-size: 1rem; }
    .md\:text-lg { font-size: 1.125rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-sm { font-size: 0.875rem; }
    .md\:grid-cols-2 { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .md\:grid-cols-3 { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .md\:grid-cols-4 { 
        grid-template-columns: repeat(4, 1fr); 
    }
    .md\:block { display: block; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:p-8 { padding: 2rem; }
    .md\:w-20 { width: 5rem; }
    .md\:h-20 { height: 5rem; }
}

/* Large Screens (1024px+) */
@media (min-width: 1024px) {
    .lg\:px-20 { 
        padding-left: 5rem; 
        padding-right: 5rem; 
    }
    .lg\:text-xl { font-size: 1.25rem; }
    .lg\:text-6xl { font-size: 3.75rem; }
    .lg\:grid-cols-3 { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .lg\:grid-cols-4 { 
        grid-template-columns: repeat(4, 1fr); 
    }
    .lg\:grid-cols-5 { 
        grid-template-columns: repeat(5, 1fr); 
    }
}

/* Amenities Section Specific Styles */
.mb-16 { margin-bottom: 4rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.text-3xl { font-size: 1.875rem; }
.amenity-icon { display: block; }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Contact & Footer Section Specific Styles */
.mt-8 { margin-top: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.gap-3 { gap: 0.75rem; }
.max-w-2xl { max-width: 42rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.p-3 { padding: 0.75rem; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.placeholder-white\/50::placeholder { color: rgba(255, 255, 255, 0.5); }
.rounded { border-radius: 0.25rem; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-accent-gold:focus { border-color: var(--accent-gold); }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.hover\:shadow-\[0_0_20px_rgba\(201\,169\,97\,0\.4\)\]:hover {
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.leading-relaxed { line-height: 1.625; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

/* Floating WhatsApp Button */
.fixed { position: fixed; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.bg-\[\#25D366\] { background-color: #25D366; }
.shadow-lg { 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.hover\:bg-\[\#128C7E\]:hover { background-color: #128C7E; }
.hover\:scale-110:hover { transform: scale(1.1); }
.z-30 { z-index: 30; }
.w-7 { width: 1.75rem; }
.h-7 { height: 1.75rem; }

/* Gallery Section Specific Styles */
.bg-white { background-color: white; }
.text-primary-dark { color: var(--primary-dark); }
.gallery-grid { display: grid; }
.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }
.group { position: relative; }
.cursor-pointer { cursor: pointer; }
.block { display: block; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.inset-0 { inset: 0; }
.bg-gradient-to-t { 
    background-image: linear-gradient(to top, var(--gradient-stops)); 
}
.from-primary-dark\/60 { 
    --gradient-from: rgba(26, 26, 46, 0.6);
    --gradient-stops: var(--gradient-from), var(--gradient-to, rgba(26, 26, 46, 0));
}
.via-transparent { --gradient-stops: var(--gradient-from), transparent, var(--gradient-to, transparent); }
.to-transparent { --gradient-to: transparent; }
.bg-primary-dark\/40 { background-color: rgba(26, 26, 46, 0.4); }
.opacity-0 { opacity: 0; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.transition-opacity { transition-property: opacity; }
.transition-transform { transition-property: transform; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }



@media (max-width: 767px) {
    #amenities .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .amenity-icon {
        font-size: 0.875rem;
    }
    
    .amenity-icon .w-16 {
        width: 3.5rem;
        height: 3.5rem;
    }
}