:root {
    --primary-color: #006d77;
    /* Deep Teal */
    --secondary-color: #83c5be;
    /* Soft Teal */
    --accent-color: #edf6f9;
    /* Soft Sand/White */
    --highlight-color: #e29578;
    /* Coral/Sunset */
    --text-color: #264653;
    /* Dark Slate */
    --bg-color: #fdfdfd;
    --sand-color: #e29578;
    /* Using Highlight as Sand equivalent for buttons */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: #e76f51;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

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

.btn-secondary:hover {
    background-color: #023e8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

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

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

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

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

/* Page Header (for subpages) */
.page-header {
    background-color: var(--accent-color);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Section General */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.service-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

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

.room-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 280px;
    overflow: hidden;
}

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

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

.room-details {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.room-price {
    font-size: 1.4rem;
    color: var(--sand-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.room-price span {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    font-family: var(--font-body);
}

.room-desc {
    margin-bottom: 25px;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item p {
    color: #555;
    font-size: 1.05rem;
}

.contact-link {
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

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

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 400px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Room Preview (Home) */
.room-types-list {
    display: none;
    /* Deprecated */
}

.type-item {
    display: none;
    /* Deprecated */
}

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

/* Deprecated Old Occasions - Kept for reference but hidden/overridden */
.occasions {
    display: none;
}

.occasions-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.occasions-text {
    flex: 1;
    padding: 60px;
}

.occasions-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

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

.occasions-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.occasions-image {
    flex: 1;
    height: 500px;
}

.occasions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rooms Horizontal Layout */
.rooms-list-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.room-card-horizontal {
    display: flex;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.room-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-card-horizontal.reverse {
    flex-direction: row-reverse;
}

.room-image-h {
    flex: 1;
    min-height: 350px;
}

.room-image-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details-h {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-details-h h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.room-features li {
    background-color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Layout V2 */
.contact-layout-v2 {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.info-card.highlight {
    background-color: var(--accent-color);
    border-color: var(--primary-color);
}

.info-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p {
    color: #666;
    margin-bottom: 5px;
}

.info-card .note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.map-container-large {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Responsive Updates */
@media (max-width: 900px) {
    .occasions-content {
        flex-direction: column;
        gap: 0;
    }

    .occasions-text {
        padding: 40px;
    }

    .occasions-image {
        width: 100%;
        height: 300px;
    }

    .room-card-horizontal,
    .room-card-horizontal.reverse {
        flex-direction: column;
    }

    .room-image-h {
        min-height: 250px;
    }

    .room-details-h {
        padding: 30px;
    }
}

/* Featured Rooms Grid (Home) */
.featured-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.featured-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.featured-info h3 {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.link-arrow {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    transition: var(--transition);
}

/* Simple Footer */
.footer-simple {
    background-color: var(--bg-color);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-simple-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: left;
}

.footer-logo-simple {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--highlight-color);
    transition: var(--transition);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact-simple {
    text-align: right;
    font-size: 0.95rem;
    color: #666;
}

.footer-contact-simple a {
    color: var(--text-color);
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    color: #999;
    font-size: 0.85rem;
}

/* Hero Collage - Container Fit */
.container-hero {
    padding: 0;
    /* Override default section padding if any */
}

.hero-collage {
    position: relative;
    height: 60vh;
    /* Reduced from 70vh for better viewport fit */
    margin-bottom: 30px;
    /* Reduced from 80px for tighter fit */
    border-radius: 30px;
    /* Rounded all corners since it's inside container */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    width: 100%;
}

.hero-item {
    position: relative;
    overflow: hidden;
}

.hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.hero-item:hover img {
    transform: scale(1.1);
}

.item-1 {
    grid-row: 1 / -1;
    grid-column: 1 / 2;
}

.item-2 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.item-3 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    pointer-events: none;
}

.hero-content {
    pointer-events: auto;
    padding: 0 20px;
}

/* SVG Icons */
.icon-svg {
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-item:hover .icon-svg {
    transform: translateY(-5px);
    color: var(--highlight-color);
}

/* Compact Occasions & Quote Card */
.occasions-compact {
    padding: 40px 0;
}

.occasions-card-compact {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 109, 119, 0.15);
}

.occasions-text-compact h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.occasions-text-compact p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.occasions-action-compact .btn {
    white-space: nowrap;
    padding: 12px 30px;
    font-size: 1rem;
}

/* Responsive Adjustments for New Elements */
/* Responsive Adjustments Round 3 */
@media (max-width: 900px) {
    .hero-refined {
        height: 60vh;
    }

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

    .occasions-banner {
        flex-direction: column;
    }

    .occasions-visual {
        clip-path: none;
        margin-left: 0;
        height: 300px;
        order: -1;
    }

    .footer-simple-grid {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand,
    .footer-contact-simple {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-collage {
        height: 60vh;
        margin-bottom: 60px;
        border-radius: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 2fr 1fr 1fr;
    }

    .item-1 {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .item-2 {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        display: none;
    }

    .item-3 {
        grid-column: 1 / -1;
        grid-row: 2 / -1;
    }

    .occasions-card-compact {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
}

/* Welcome Section */
.welcome {
    padding-top: 10px;
}

.welcome-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.welcome-text {
    flex: 1;
}

.welcome-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Background Colors */
.bg-accent {
    background-color: var(--accent-color);
}

/* Card Buttons */
.info-card .btn {
    margin-top: 15px;
    width: 100%;
}

/* Responsive Adjustments Round 4 */
@media (max-width: 900px) {
    .welcome-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .welcome-text .section-title {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: scaleY(0);
        transform-origin: top;
        transition: var(--transition);
    }

    .nav.active {
        transform: scaleY(1);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}