/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
    --primary-gold: #d4af37;
    --gold-hover: #b8931c;
    --dark-bg: #111111;
    --dark-card: #1c1c1c;
    --light-stone: #faf9f6;
    --light-card: #ffffff;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba5a;
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-muted: #666666;
    --text-muted-light: #cccccc;
    --border-color: #e5dfd3;
    --border-dark: #333333;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-stone);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utility Classes & Animations */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7rem 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

header.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-btn {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-gold);
}

.nav-btn:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)), url('images/hotel_hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: inline-block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted-light);
    font-weight: 300;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 1px solid var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    background-color: var(--light-stone);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border-left: 4px solid var(--primary-gold);
}

.about-image-badge span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.about-image-badge label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted-light);
}

/* Booking Plans Section */
.plans {
    background-color: #f0ede6;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.plan-card {
    background-color: var(--light-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan-image-area {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.plan-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.plan-card:hover .plan-image {
    transform: scale(1.08);
}

.plan-price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(5px);
    color: var(--text-light);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    border-left: 3px solid var(--primary-gold);
}

.plan-price-tag span {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    font-weight: 400;
}

.plan-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.plan-features li i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.btn-whatsapp-booking {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-whatsapp-booking:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

/* Amenities & Residency Rules Section */
.rules-amenities {
    background-color: var(--light-stone);
}

.rules-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.amenities-container h3, .residency-container h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.amenities-container h3::after, .residency-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-card {
    background-color: var(--light-card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 3px solid transparent;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary-gold);
}

.amenity-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    display: block;
}

.amenity-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.amenity-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Residency Warning card */
.residency-card {
    background-color: #fff9e6;
    border: 1px solid #ffe899;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.residency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.residency-header i {
    font-size: 2.2rem;
    color: #e6a100;
}

.residency-header h4 {
    font-size: 1.3rem;
    color: #805900;
}

.residency-card p {
    color: #664d00;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.residency-list {
    list-style: none;
}

.residency-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #664d00;
    align-items: flex-start;
}

.residency-list li i {
    color: #e6a100;
    margin-top: 3px;
}

/* Location Section */
.location {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.location .section-title {
    color: var(--text-light);
}

.location .section-subtitle {
    color: var(--text-muted-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.location-info p {
    color: var(--text-muted-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.location-details {
    margin-bottom: 2.5rem;
}

.loc-detail-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.loc-detail-item i {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-top: 3px;
}

.loc-detail-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-light);
}

.loc-detail-item p {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    margin: 0;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-location:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
}

.map-wrapper {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-dark);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
footer {
    background-color: #0b0b0b;
    padding: 4rem 0 2rem 0;
    color: var(--text-muted-light);
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col .logo-main {
    font-size: 1.4rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating WhatsApp Blink Button (pulsing and blinking) */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-size: 2.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: whatsappPulse 2s infinite, whatsappBlink 1.5s infinite alternate;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Blinking/Glow Highlight Animation */
@keyframes whatsappBlink {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(37, 211, 102, 0.8));
    }
}

/* Scroll Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    visibility: hidden;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-grid, .rules-grid, .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }
    .amenities-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(10px);
        gap: 2rem;
        padding: 3rem 2rem;
        transition: var(--transition);
        align-items: center;
        border-top: 1px solid var(--border-dark);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-primary, .btn-secondary {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .amenities-list {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}
