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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #fafbfc;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 3px solid #1e40af;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}


.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1e40af;
    text-shadow: 0 1px 2px rgba(30, 64, 175, 0.2);
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
    margin-left: -25px;
    transition: all 0.3s ease;
}

.nav-logo h1:hover {
    color: #1e3a8a;
    transform: translateY(-1px);
}


.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:hover {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1e40af;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #1e3a8a;
}

/* Hero Section */
.hero {
    color: white;
    padding: 120px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('summerskyline.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    letter-spacing: 0.05em;
    text-align: center;
    color: white;
}

.hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    color: white;
}

.neighborhood-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.neighborhood-link:hover {
    color: #e0e7ff;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}


.search-widget {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.search-header {
    text-align: center;
    margin-bottom: 1rem;
}

.search-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.search-field {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #1e40af;
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 60px;
    justify-content: center;
    min-width: 0;
    flex: 1;
    position: relative;
}

#guests-field {
    position: relative;
}

.search-field:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.search-field.active {
    border-color: #1e40af;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.date-field {
    cursor: pointer;
    position: relative;
}

.date-field:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.date-input-visible {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
    border: none;
    background: transparent;
    font-size: 16px;
    pointer-events: auto;
    margin: 0;
    padding: 0;
}

.field-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.search-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
    display: block;
}

.date-display {
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
    pointer-events: none;
}

.search-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    height: 60px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.search-btn:hover::before {
    left: 100%;
}

@keyframes gentle-fade-in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.search-btn:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
    padding: 0.1rem 0;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 0.1rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.stat-star {
    font-size: 1.4rem;
    vertical-align: baseline;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 0.3rem;
}

.hero-affiliate {
    text-align: center;
    margin-top: 1rem;
}

.affiliate-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Duluth Highlights Section */
.duluth-highlights {
    padding: 80px 0 0 0;
    background: white;
    margin-top: -20px;
    margin-bottom: -40px;
    position: relative;
    z-index: 10;
}

.duluth-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
    transform: translateY(-60px);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.highlight-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Hotels Section */
.hotels-section, .budget-hotels, .family-hotels {
    padding: 100px 0;
}

.hotels-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.budget-hotels {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.family-hotels {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hotels-section h2, .budget-hotels h2, .family-hotels h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #1e293b;
    letter-spacing: -0.01em;
    position: relative;
}

.hotels-section h2::after, .budget-hotels h2::after, .family-hotels h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 2px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hotel-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08), 0 0 0 1px rgba(30, 64, 175, 0.05);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15), 0 0 0 1px rgba(30, 64, 175, 0.1);
}

.hotel-card.featured {
    border: 2px solid #1e40af;
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.12), 0 0 0 2px rgba(30, 64, 175, 0.1);
}

/* Enhanced Image Gallery */
.hotel-image-gallery {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-card:hover .image-overlay {
    opacity: 1;
}

.view-gallery-btn {
    background: rgba(255,255,255,0.9);
    color: #1e293b;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-gallery-btn:hover {
    background: white;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    height: 50px;
    align-items: center;
}

.thumbnail-images img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.1);
}

.more-photos {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Legacy hotel-image for backward compatibility */
.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.budget-badge {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.family-badge {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.hotel-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-header {
    margin-bottom: 1rem;
}

.hotel-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.hotel-location {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-score {
    font-weight: 600;
    color: #374151;
}

.review-count {
    color: #64748b;
    font-size: 0.875rem;
}

.hotel-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amenity {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Enhanced Pricing */
.hotel-pricing {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.hotel-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.price-period {
    color: #64748b;
    font-size: 0.875rem;
}

.price-note {
    color: #64748b;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.875rem;
}

.discount {
    background: #10b981;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hotel Actions */
.hotel-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.book-btn {
    flex: 1;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.book-btn:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.favorite-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #64748b;
    padding: 0.75rem;
    border: 1px solid rgba(30, 64, 175, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.05);
}

.favorite-btn:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    border-color: #fca5a5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.favorite-btn.favorited {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    border-color: #fca5a5;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

/* Neighborhoods Section */
.neighborhoods-section {
    padding: 80px 0;
    background: white;
}

.neighborhoods-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.neighborhood-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.neighborhood-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.neighborhood-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.neighborhood-card ul {
    list-style: none;
}

.neighborhood-card li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.neighborhood-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(30, 64, 175, 0.3) 50%, transparent 100%);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #60a5fa;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
    text-shadow: 0 1px 2px rgba(96, 165, 250, 0.3);
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #93c5fd;
    text-shadow: 0 1px 2px rgba(96, 165, 250, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-field {
        min-height: 60px;
    }
    
    .search-btn {
        min-height: 60px;
    }
    
    .search-widget {
        margin: 1rem auto;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hotel-card {
        flex-direction: column;
    }
    
    .hotel-image-gallery {
        height: 200px;
    }
    
    .main-image {
        height: 150px;
    }
    
    .thumbnail-images {
        height: 40px;
    }
    
    .thumbnail-images img {
        width: 50px;
        height: 30px;
    }
    
    .hotel-actions {
        flex-direction: column;
    }
    
    .favorite-btn {
        width: 100%;
        height: 40px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hotels-section h2, 
    .budget-hotels h2, 
    .family-hotels h2,
    .neighborhoods-section h2,
    .duluth-highlights h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .search-widget {
        padding: 1rem;
    }
    
    .guests-modal .guests-dropdown-content {
        width: calc(100% - 2rem);
        max-width: 350px;
    }
    
    .hotel-content {
        padding: 1rem;
    }
    
    .neighborhood-card {
        padding: 1.5rem;
    }
}

/* Guests Dropdown */
.guests-modal {
    display: none;
    background: white;
    border: 2px solid #1e40af;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
}

.guests-modal.active {
    display: block;
}

.guests-dropdown-content {
    padding: 1.25rem;
}

.guests-header {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.guests-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.guests-option:last-child {
    border-bottom: none;
}

.guests-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.guests-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guests-btn {
    width: 28px;
    height: 28px;
    border: 2px solid #1e40af;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    transition: all 0.2s ease;
}

.guests-btn:hover {
    background: #1e40af;
    color: white;
    transform: scale(1.1);
}

.guests-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #94a3b8;
}

.guests-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    min-width: 20px;
    text-align: center;
    padding: 0 0.5rem;
}

/* Performance Optimizations */
.hotel-image img {
    loading: lazy;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.book-btn:focus,
.nav-menu a:focus,
.footer-section a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Highlights Carousel */
.highlights-carousel-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    transform: translateY(-160px);
    touch-action: manipulation; /* Allow touch but prevent double-tap zoom */
    overflow: hidden;
}

.highlights-wrapper {
    overflow: visible;
    position: relative;
    width: 100%;
    height: 500px;
    touch-action: manipulation; /* Allow touch but prevent double-tap zoom */
}

.highlights-wrapper::before,
.highlights-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.highlights-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.highlights-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.highlights-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    height: 100%;
    align-items: center;
}

.highlight-card {
    flex: 0 0 calc(32vw - 6px);
    height: 350px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 3px;
    position: relative;
}

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

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 1rem 0 0.75rem 0;
    padding: 0 1.25rem;
    text-align: center;
    line-height: 1.3;
}

.highlight-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
    padding: 0 1.25rem 1.5rem 1.25rem;
    text-align: center;
}

.highlights-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 20;
}

.highlights-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(30, 64, 175, 0.7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    pointer-events: auto;
    position: relative;
    z-index: 21;
    backdrop-filter: blur(10px);
}

.highlights-btn:hover {
    background: rgba(30, 64, 175, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.highlights-btn:disabled {
    background: rgba(203, 213, 225, 0.7);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.prev-highlights-btn {
    margin-right: auto;
}

.next-highlights-btn {
    margin-left: auto;
}


/* Mobile Responsive for Highlights */
@media (max-width: 768px) {
    .highlights-wrapper {
        height: 350px;
    }
    
    .highlight-card {
        height: 300px;
        margin: 0 2px;
    }
    
    .highlight-card img {
        height: 150px;
    }
    
    .highlight-card h3 {
        font-size: 1.1rem;
        margin: 0.75rem 0 0.5rem 0;
        padding: 0 0.75rem;
    }
    
    .highlight-card p {
        font-size: 0.85rem;
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    
    .highlights-btn {
        width: 45px;
        height: 45px;
    }
    
    .highlights-controls {
        padding: 0 1rem;
    }
    
    .highlights-wrapper::before,
    .highlights-wrapper::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .highlights-wrapper {
        height: 300px;
    }
    
    .highlight-card {
        height: 250px;
        margin: 0 1px;
    }
    
    .highlight-card img {
        height: 120px;
    }
    
    .highlight-card h3 {
        font-size: 0.95rem;
        margin: 0.5rem 0 0.25rem 0;
        padding: 0 0.5rem;
    }
    
    .highlight-card p {
        font-size: 0.75rem;
        padding: 0 0.5rem 0.5rem 0.5rem;
    }
    
    .highlights-wrapper::before,
    .highlights-wrapper::after {
        width: 25px;
    }
}

/* Second Carousel - Now part of main highlights section */

.second-carousel-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    touch-action: manipulation;
    overflow: hidden;
    margin-top: -230px;
}

.second-carousel-wrapper {
    overflow: visible;
    position: relative;
    width: 100%;
    height: 400px;
    touch-action: manipulation;
}

.second-carousel-wrapper::before,
.second-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.second-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.second-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.second-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    height: 100%;
    align-items: center;
}

.second-highlight-card {
    flex: 0 0 calc(32vw - 6px);
    height: 300px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 3px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.second-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.second-highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.second-highlight-card:hover img {
    transform: scale(1.05);
}

.second-highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.75rem 0 0.5rem 0;
    padding: 0 1rem;
    text-align: center;
    line-height: 1.3;
}

.second-highlight-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
    padding: 0 1rem 1rem 1rem;
    text-align: center;
}

.second-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 20;
}

.second-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(30, 64, 175, 0.8);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    pointer-events: auto;
    position: relative;
    z-index: 21;
    backdrop-filter: blur(10px);
}

.second-carousel-btn:hover {
    background: rgba(30, 64, 175, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.second-carousel-btn:disabled {
    background: rgba(203, 213, 225, 0.7);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.prev-second-btn {
    margin-right: auto;
}

.next-second-btn {
    margin-left: auto;
}

/* Mobile Responsive for Second Carousel */
@media (max-width: 768px) {
    .second-carousel-wrapper {
        height: 300px;
    }
    
    .second-highlight-card {
        height: 250px;
        margin: 0 2px;
    }
    
    .second-highlight-card img {
        height: 150px;
    }
    
    .second-highlight-card h3 {
        font-size: 1rem;
        margin: 0.5rem 0 0.25rem 0;
        padding: 0 0.75rem;
    }
    
    .second-highlight-card p {
        font-size: 0.8rem;
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    
    .second-carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .second-carousel-controls {
        padding: 0 1rem;
    }
    
    .second-carousel-wrapper::before,
    .second-carousel-wrapper::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .second-carousel-wrapper {
        height: 250px;
    }
    
    .second-highlight-card {
        height: 200px;
        margin: 0 1px;
    }
    
    .second-highlight-card img {
        height: 120px;
    }
    
    .second-highlight-card h3 {
        font-size: 0.9rem;
        margin: 0.4rem 0 0.2rem 0;
        padding: 0 0.5rem;
    }
    
    .second-highlight-card p {
        font-size: 0.75rem;
        padding: 0 0.5rem 0.5rem 0.5rem;
    }
    
    .second-carousel-wrapper::before,
    .second-carousel-wrapper::after {
        width: 25px;
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(30, 64, 175, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
}

.back-to-top-btn.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: rgba(15, 30, 70, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 30, 70, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(0);
}

/* Mobile styles for back to top button */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Print styles */
@media print {
    .header,
    .search-widget,
    .book-btn,
    .back-to-top-btn {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .hotel-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}


