:root {
    --primary-color: #1a1a2e;
    --primary-dark: #0f0f1e;
    --accent-gold: #d4af37;
    --accent-rose: #b76e79;
    --accent-teal: #2d6a6a;
    --secondary-color: #c9a961;
    --background: #f5f5f0;
    --card-bg: #ffffff;
    --text-primary: #2c2c2c;
    --text-secondary: #6b6b6b;
    --border-color: #e8e8e0;
    --success-color: #2d6a6a;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --gradient-luxury: linear-gradient(135deg, #1a1a2e 0%, #2d3561 50%, #1a1a2e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

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

body {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Hero Section */
.hero {
    background: var(--gradient-luxury);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.hero .tagline {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-style: italic;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Filters Section */
.filters-section {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.filters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 16px 16px 0 0;
}

.filters-section h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.filter-group input,
.filter-group select {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.4s ease;
    background-color: #fafaf8;
    font-family: 'Lato', sans-serif;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background-color: white;
    transform: translateY(-2px);
}

/* Amenity Filters */
.amenity-filters {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
}

.amenity-filters h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-align: center;
}

.amenity-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-color: #fafaf8;
}

.checkbox-label:hover {
    background-color: white;
    border-color: var(--accent-gold);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--accent-gold);
}

.checkbox-label span {
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

/* Filter Actions */
.filter-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: var(--gradient-luxury);
    color: white;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

/* Results Summary */
.results-summary {
    margin-bottom: 2.5rem;
    text-align: center;
}

#results-count {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Hotel Card */
.hotel-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hotel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hotel-card:hover::before {
    opacity: 1;
}

.hotel-header {
    background: var(--gradient-luxury);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hotel-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30%, -30%); }
}

.hotel-name {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.hotel-location {
    font-size: 1.05rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-family: 'Lato', sans-serif;
}

.hotel-location::before {
    content: "📍";
    font-size: 1.2rem;
}

.hotel-brand {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    padding: 0.4rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
    position: relative;
    z-index: 1;
}

.hotel-body {
    padding: 2rem;
    background: linear-gradient(to bottom, white 0%, #fafaf8 100%);
}

.amenities-section {
    margin-bottom: 1.5rem;
}

.amenities-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenity-tag {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%);
    color: var(--text-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.amenity-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.amenity-tag.highlight {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.kids-club-info,
.dining-info {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fafaf8 0%, white 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-teal);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.kids-club-info:hover,
.dining-info:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.info-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
}

.hotel-notes {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #78350f;
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow);
    line-height: 1.7;
}

.hotel-notes strong {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    background: var(--gradient-luxury);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--accent-gold);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

footer p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-style: italic;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }

    .hero .tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .hero {
        padding: 4rem 1.5rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .amenity-checkboxes {
        grid-template-columns: 1fr;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 1rem;
    }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, white 0%, #fafaf8 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.no-results h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 2px;
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
}
