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

:root {
    /* Color System - Rose Luxe Nature */
    --bg-primary: #FFF1F5;
    --bg-secondary: #FFE4EC;
    
    --green-accent: #15803D;
    --green-light: #22C55E;
    
    --pink-accent: #EC4899;
    --pink-light: #F472B6;
    
    --gold: #FACC15;
    
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(244, 114, 182, 0.2);
    --glass-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --max-width: 1380px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at top left, var(--bg-secondary) 0%, transparent 40%),
                      radial-gradient(circle at bottom right, var(--bg-secondary) 0%, transparent 40%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 120px;
}

.section-padding {
    padding: 100px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 4rem; line-height: 1.1; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
p { color: var(--text-secondary); margin-bottom: 1.5rem; }

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--pink-accent), var(--pink-light));
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.6);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: var(--green-accent);
    border: 2px solid var(--green-accent);
}

.secondary-btn:hover {
    background: var(--green-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
}

/* Header & Navigation */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 120px;
    transition: padding 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-accent);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-links a:hover, .nav-links a.active {
    color: var(--pink-accent);
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-menu-links li {
    margin: 20px 0;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
}

.close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--pink-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

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

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

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

/* Trust Strip */
.trust-strip {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item h4 {
    color: var(--green-accent);
    margin-bottom: 8px;
}

/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hotel-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 114, 182, 0.2);
}

.hotel-image {
    height: 250px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

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

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

.hotel-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-location {
    font-size: 0.85rem;
    color: var(--pink-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hotel-price {
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 16px;
}

.hotel-info .btn {
    margin-top: auto;
    width: 100%;
}

/* Experiences Alternating Layout */
.experience-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.experience-row:nth-child(even) .exp-image-col {
    order: 2;
}

.experience-row:nth-child(even) .exp-text-col {
    order: 1;
}

.exp-image-col {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.exp-image-col img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.exp-text-col h2 {
    color: var(--pink-accent);
}

/* Editorial Article Layout (Guide) */
.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.article-content h3 {
    margin-top: 40px;
    color: var(--green-accent);
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 10px;
}

/* Contact Form */
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--pink-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--pink-accent);
    margin-bottom: 16px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a:hover {
    color: var(--pink-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.legal-content h2 {
    margin-top: 40px;
    font-size: 1.5rem;
}

/* Responsive Strict Rules */
@media (max-width: 1024px) {
    .container {
        padding: 0 90px;
    }
    .header-wrapper {
        padding: 0 90px;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .header-wrapper {
        padding: 0 20px;
    }
    .navbar {
        padding: 16px 24px;
    }
    .nav-links, .hidden-mobile {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .experience-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .experience-row:nth-child(even) .exp-image-col,
    .experience-row:nth-child(even) .exp-text-col {
        order: unset;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-buttons {
        flex-direction: column;
    }
    .contact-wrapper {
        padding: 30px 20px;
    }
}