/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c5a059; /* Gold */
    --secondary-color: #1a252f; /* Dark Navy */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.underline {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-small, .btn-outline, .btn-block {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b08d48;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-small {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    font-size: 0.8rem;
    margin-top: 15px;
}

.btn-small:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-block:hover {
    background-color: #128C7E;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    line-height: 1.1;
    max-width: 200px; /* Prevent it from pushing nav too far if screen is narrow */
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.nav-btn:hover {
    background-color: #b08d48;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-text p {
    margin-bottom: 20px;
    color: #555;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 15px;
    margin-top: 30px;
}

.features-list li {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-left: 5px solid var(--primary-color); /* Gold accent */
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.features-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15);
    background: #fffbf2;
}

.features-list i {
    font-size: 1.2rem;
    margin-right: 15px;
    background: rgba(197, 160, 89, 0.1); /* Light gold bg for icon */
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0; /* Prevent icon shrinking */
}

.intro-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Gallery Section Removed */

/* Video Section Removed */

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img-container img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.room-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.amenities-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Tourism Section */
.tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tourism-item {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.tourism-item:hover {
    transform: translateY(-5px);
}

.tourism-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tourism-item h3 {
    margin-bottom: 15px;
}

.tourism-item p {
    color: #666;
}

/* Testimonials Removed */

/* FAQ Section Removed */

/* Booking Full Section */
.booking-section-full {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.booking-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.booking-info {
    flex: 1;
    min-width: 300px;
}

.booking-info h2 {
    color: white;
    margin-bottom: 20px;
}

.booking-info p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-details .detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.social-follow {
    margin-top: 30px;
}

.social-follow p {
    margin-bottom: 10px;
    font-weight: bold;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.booking-form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    color: var(--text-color);
}

.booking-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.input-group {
    margin-bottom: 15px;
}

.row {
    display: flex;
    gap: 15px;
}

.row .input-group {
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--primary-color);
}

.map-full {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background-color: #0f151a;
    color: rgba(255,255,255,0.5);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse {
    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);
    }
}

/* Location Section Premium Styles */
.location-section {
    padding: 100px 0; /* More vertical space overall */
}

.location-section .section-title {
    margin-bottom: 80px; /* More space between title and map */
}

.location-content-wrapper {
    display: flex;
    gap: 80px; /* Even bigger gap for separation */
    align-items: center; /* Center vertically */
    margin-bottom: 120px; /* More space before surroundings */
    position: relative;
    min-height: auto; /* Remove fixed min-height constraints */
}

.map-premium-container {
    flex: 1.5; /* Adjusted ratio */
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: none; /* Removed border for cleaner look */
    position: relative;
    z-index: 1;
}

.location-details-card {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    margin-left: 0; /* REMOVED OVERLAP completely */
    border: 1px solid #eee; /* Subtle border definition */
}

.location-details-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.location-desc {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.transport-list {
    margin-bottom: 30px;
}

.transport-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.transport-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.transport-list li:hover .icon-box {
    background-color: var(--primary-color);
    color: white;
}

.transport-info strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 3px;
}

.transport-info span {
    font-size: 0.9rem;
    color: #888;
}

.btn-map-action {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px; /* Pill shape */
    padding: 15px 30px;
}

.surroundings-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.surroundings-title h3 {
    font-size: 2rem;
    display: inline-block;
    background: var(--light-bg);
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.surroundings-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 1;
}

/* Responsive Design Adjustments */
@media screen and (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
        max-width: 140px;
    }

    .logo-img {
        height: 50px;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 90px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-grid, .booking-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    
    
    .booking-section-full {
        padding: 50px 0;
    }
    
    .section {
        padding: 50px 0;
    }

    /* Location Responsive */
    .location-content-wrapper {
        flex-direction: column;
        gap: 40px; /* Add gap for mobile too */
        margin-bottom: 60px;
    }

    .map-premium-container {
        width: 100%;
        height: 350px;
    }

    .location-details-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        padding: 30px;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
