:root {
    --peacock-blue: #005F73;
    --peacock-teal: #0A9396;
    --peacock-green: #94D2BD;
    --peacock-light: #E9D8A6;
    --peacock-gold: #EE9B00;
    --peacock-bronze: #CA6702;
    --peacock-dark: #001219;
    --peacock-purple: #5B2E8D;
    --peacock-cyan: #48CAE4;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --section-padding: 60px 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--peacock-blue), var(--peacock-teal));
    color: var(--white);
    border-color: var(--peacock-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--peacock-teal), var(--peacock-cyan));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 95, 115, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--peacock-gold), var(--peacock-bronze));
    color: var(--white);
    border-color: var(--peacock-gold);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--peacock-bronze), var(--peacock-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 155, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--peacock-blue);
    border-color: var(--peacock-blue);
}

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

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

.btn-white:hover {
    background: var(--peacock-light);
    color: var(--peacock-dark);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 14px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

/* Top Bar */
.top-bar {
    background: var(--peacock-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: var(--white);
    margin-right: 16px;
    font-size: 13px;
}

.top-bar-left a:hover { color: var(--peacock-gold); }
.top-bar-left i { margin-right: 5px; }

.top-bar-right a {
    color: var(--white);
    margin-left: 12px;
    font-size: 14px;
}

.top-bar-right a:hover { color: var(--peacock-gold); }

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

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

.logo h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--peacock-blue), var(--peacock-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    display: block;
    font-size: 10px;
    color: var(--peacock-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav { flex: 1; margin: 0 20px; }

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    display: block;
    padding: 8px 12px;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 13px;
}

.nav-menu > li > a:hover { color: var(--peacock-blue); }
.nav-menu > li > a i { font-size: 10px; margin-left: 4px; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--dark-gray);
    font-size: 13px;
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
    background: var(--peacock-light);
    color: var(--peacock-blue);
    padding-left: 22px;
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-actions .btn { padding: 8px 18px; font-size: 12px; }

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

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--peacock-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 18, 25, 0.4), rgba(0, 18, 25, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i { color: var(--white); font-size: 20px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* Section Styles */
section { padding: var(--section-padding); }

.section-header { text-align: center; margin-bottom: 40px; }

.section-subtitle {
    display: block;
    color: var(--peacock-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--peacock-dark);
    margin-bottom: 16px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--peacock-blue), var(--peacock-gold));
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section { background: var(--light-gray); }

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.welcome-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
}

.welcome-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.welcome-image:hover img { transform: scale(1.05); }

/* Rooms Preview */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.room-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.room-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 95, 115, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay { opacity: 1; }

.room-info { padding: 20px; }

.room-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--peacock-dark);
    margin-bottom: 8px;
}

.room-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--peacock-blue);
}

.per-night { font-size: 13px; color: var(--gray); }

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

/* Experiences Section */
.experiences-section {
    background: linear-gradient(135deg, var(--peacock-blue), var(--peacock-teal));
    color: var(--white);
}

.experiences-section .section-subtitle,
.experiences-section .section-title { color: var(--white); }

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.experience-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--peacock-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

.experience-card p {
    margin-bottom: 16px;
    opacity: 0.9;
    font-size: 14px;
}

.link-arrow {
    color: var(--peacock-gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.link-arrow:hover { gap: 12px; }

/* Testimonials Section */
.testimonials-section { background: var(--light-gray); }

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-rating { color: var(--peacock-gold); margin-bottom: 16px; }
.testimonial-rating i { margin-right: 4px; }

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author h4 {
    font-size: 16px;
    color: var(--peacock-dark);
    margin-bottom: 3px;
}

.testimonial-author span { font-size: 13px; color: var(--gray); }

/* CTA Section */
.cta-section {
    position: relative;
    background: url('../images/cta-bg.jpg') center/cover no-repeat;
    background-attachment: scroll;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.9), rgba(91, 46, 141, 0.9));
}

.cta-content { position: relative; z-index: 2; }

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.main-footer {
    background: var(--peacock-dark);
    color: var(--white);
}

.footer-top { padding: 48px 0 32px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--peacock-gold);
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--peacock-light);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--peacock-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--peacock-gold);
    transform: translateY(-3px);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--peacock-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: 13px; }

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

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

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--peacock-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--peacock-gold);
    transform: translateY(-3px);
}

.scroll-to-top.show { display: flex; }

/* Page Header (shared by all inner pages) */
.page-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--peacock-blue), var(--peacock-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 18, 25, 0.3);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--peacock-blue);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--peacock-blue);
    cursor: pointer;
}

.mobile-nav ul li { border-bottom: 1px solid var(--light-gray); }

.mobile-nav ul li a {
    display: block;
    padding: 14px 20px;
    color: var(--dark-gray);
    font-size: 14px;
}

.mobile-nav ul li a:hover {
    background: var(--peacock-light);
    color: var(--peacock-blue);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-actions .btn-secondary { display: none; }

    .page-header { height: 260px; }
    .page-header h1 { font-size: 34px; }

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

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

@media (max-width: 768px) {
    :root { --section-padding: 40px 0; }

    .container { padding: 0 16px; }

    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-bar-left a { margin: 0 8px; font-size: 12px; }
    .top-bar-right a { font-size: 13px; }

    .header-content { padding: 10px 0; }

    .logo h1 { font-size: 18px; }
    .logo-tagline { font-size: 9px; }

    .header-actions .btn { padding: 6px 14px; font-size: 11px; }

    .hero-section {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 24px; }
    .hero-buttons { flex-direction: column; gap: 12px; }

    .section-title { font-size: 26px; }
    .section-header { margin-bottom: 28px; }

    .welcome-content { grid-template-columns: 1fr; gap: 24px; }
    .welcome-text p { font-size: 14px; }

    .rooms-grid,
    .experiences-grid { grid-template-columns: 1fr; gap: 20px; }

    .room-image { height: 200px; }
    .room-info { padding: 16px; }
    .room-info h3 { font-size: 18px; }
    .price { font-size: 20px; }

    .experience-card { padding: 24px 20px; }
    .experience-icon { width: 56px; height: 56px; font-size: 22px; }
    .experience-card h3 { font-size: 18px; }

    .testimonial-card { padding: 24px; }

    .cta-section { padding: 60px 0; }
    .cta-content h2 { font-size: 28px; }
    .cta-content p { font-size: 16px; }
    .cta-buttons { flex-direction: column; }

    .footer-top { padding: 36px 0 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom-content { flex-direction: column; gap: 12px; text-align: center; }

    .page-header { height: 220px; }
    .page-header h1 { font-size: 28px; }
    .page-header p { font-size: 15px; }

    .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 14px; }
    .section-title { font-size: 22px; }

    .page-header { height: 180px; }
    .page-header h1 { font-size: 22px; }
    .page-header p { font-size: 13px; }

    .mobile-menu { width: 260px; }
}
