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

:root {
    /* DuluthGuide Color Palette */
    --color-navy: #00296B; /* Superior Navy */
    --color-copper: #C47C48; /* Copper Driftwood */
    --color-teal: #4EA5A9; /* Harbor Teal */
    --color-fog-white: #F8F9FA; /* Fog White */
    --color-lake-mist: #E3EEF8; /* Lake Mist */
    --color-text: #333333; /* Granite Gray */
    --color-white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-fog-white);
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body.nav-open {
    overflow: hidden;
}

/* Remove yellow highlight on hover/click */
* {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background-color: var(--color-lake-mist);
    color: var(--color-navy);
}

::-moz-selection {
    background-color: var(--color-lake-mist);
    color: var(--color-navy);
}

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

/* Header Styles */
.header {
    background-color: #00296B;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 41, 107, 0.02);
    pointer-events: none;
}

.nav {
    background-color: #00296B;
}

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


.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
    margin-left: -25px;
    transition: all 0.3s ease;
}

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


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

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

.nav-menu.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(42px, auto);
    position: absolute;
    top: 70px;
    right: 16px;
    left: auto;
    gap: 0.45rem 0.75rem;
    background: #00296B;
    border-radius: 0 0 16px 16px;
    padding: 1.1rem 1.3rem 1.3rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    width: 230px;
}

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

.nav-menu a:hover {
    color: var(--color-navy);
    background: #ffffff;
    font-weight: 700;
    transform: translateY(-2px);
}

.nav-menu.active a {
    width: 100%;
    padding: 0.55rem 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    text-align: center;
    transform: none;
}

.nav-menu.active a:hover {
    background: transparent;
    color: #e3eef8;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--color-lake-mist);
    color: var(--color-navy);
    font-weight: 700;
    transform: none;
    padding-left: 1.5rem;
}

.hamburger {
    display: none;
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger:hover span {
    background: var(--color-copper);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    color: white;
    padding: 120px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: 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(to top, rgba(0, 41, 107, 0.7) 0%, rgba(0, 41, 107, 0.3) 50%, transparent 100%);
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
}

.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 {
    margin: 2rem auto 0;
    max-width: 600px;
}

.restaurant-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.restaurant-search input {
    flex: 1;
    padding: 1.25rem 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    height: 60px;
    box-sizing: border-box;
}

.restaurant-search input:focus {
    outline: none;
}

.restaurant-search-btn {
    background: var(--color-navy);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.restaurant-search-btn:hover {
    background: var(--color-copper);
}

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

.search-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    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 var(--color-navy);
    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: var(--color-sky);
    background: #eef6f9;
}

.search-field.active {
    border-color: var(--color-navy);
    background: #eef6f9;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 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: var(--color-navy);
    margin: 0;
    pointer-events: none;
}

.search-btn {
    background: linear-gradient(135deg, var(--color-navy) 0%, #173554 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 18px rgba(0, 0, 0, 0.18);
    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, #173554 0%, #132a44 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.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;
}

/* Intro/Plan Your Stay Section */
/* New Sections Below Hero */
.intro-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px 0 40px;
    position: relative;
}

.intro-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.intro-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.intro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(30, 64, 175, 0.12);
}

.intro-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.intro-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.9rem 0 0.4rem;
}

.intro-card p {
    color: #64748b;
    font-size: 0.95rem;
    padding: 0 1rem 1.2rem;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 40px 0 20px;
    }
    .intro-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    .intro-card img {
        height: 140px;
    }
}

.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: var(--color-navy);
}

.highlight-card p {
    color: #555555;
    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, var(--color-navy) 0%, var(--color-sky) 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 24px rgba(0, 0, 0, 0.08), 0 1px 0 0 rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.14);
}

.hotel-card.featured {
    border: 2px solid var(--color-navy);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

/* 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: var(--color-navy);
    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, var(--color-navy) 0%, #173554 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.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: var(--color-navy);
}

.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: var(--color-navy);
}

.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: var(--color-copper);
    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 14px rgba(196, 124, 72, 0.28);
}

.book-btn:hover {
    background: #a8643b;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(168, 100, 59, 0.32);
}

.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, #f8fafc 0%, #eef2f7 100%);
    color: #334155;
    border-color: #e2e8f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.favorite-btn.favorited {
    background: linear-gradient(135deg, #eef6f9 0%, #e3f0f6 100%);
    color: var(--color-navy);
    border-color: #dbe7ee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 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 var(--color-navy);
}

.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: #00296B;
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.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: var(--color-sky);
    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: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-sky);
    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: var(--color-sky);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(40px, auto);
        position: absolute;
        top: 68px;
        right: 4px;
        left: auto;
        gap: 0.25rem 0.5rem;
        background-color: #00296B;
        border: 1px solid rgba(0, 41, 107, 0.4);
        border-radius: 0 0 10px 10px;
        padding: 0.65rem 0.75rem 0.75rem;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
        width: 196px;
    }

    .nav-menu.active a {
        padding: 0.4rem 0;
        border-radius: 0;
        background: transparent;
        text-align: center;
        color: #ffffff;
        font-size: 0.88rem;
    }

    .nav-menu.active a:hover {
        color: var(--color-lake-mist);
        background: transparent;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
        margin-left: 0;
    }
    
    .hero {
        padding: 82px 0 40px;
        min-height: 420px;
    }
    
    .hero-title {
        font-size: 2.05rem;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        max-width: 90%;
        display: none;
    }
    
    .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;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .restaurant-search {
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .restaurant-search input {
        height: 54px;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .restaurant-search-btn {
        width: 56px;
        height: 54px;
        border-radius: 12px;
    }
    
    .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;
    }

    .stays-grid,
    .explore-grid,
    .trust-grid,
    .season-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-subtext {
        font-size: 0.98rem;
    }

    .stay-card,
    .explore-card,
    .season-card,
    .trust-card {
        border-radius: 16px;
    }

    .stay-title {
        font-size: 1.05rem;
    }

    .stay-tag {
        font-size: 0.8rem;
    }
    
    .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;
    }
    
    .nav-logo h1 {
        font-size: 1.35rem;
        letter-spacing: -0.01em;
    }
    
    .hero {
        padding: 64px 0 40px;
        min-height: 340px;
    }

    .hero-background {
        background-size: 178%;
        background-position: center 56%;
    }

    .featured-stays {
        padding: 0 0 2rem;
        padding-bottom: 2rem;
        margin-top: -40px;
        position: relative;
        z-index: 10;
    }
    .explore-duluth {
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .search-widget {
        padding: 1rem 0.75rem;
    }
    
    .restaurant-search {
        gap: 0.45rem;
    }
    
    .restaurant-search input {
        height: 52px;
    }
    
    .restaurant-search-btn {
        height: 52px;
        width: 52px;
    }
    
    .guests-modal .guests-dropdown-content {
        width: calc(100% - 2rem);
        max-width: 350px;
    }
    
    .hotel-content {
        padding: 1rem;
    }
    
    .neighborhood-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-subtext {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .nav-logo h1 {
        font-size: 1.25rem;
    }
}

/* Guests Dropdown */
.guests-modal {
    display: none;
    background: white;
    border: 2px solid var(--color-navy);
    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 var(--color-navy);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    transition: all 0.2s ease;
}

.guests-btn:hover {
    background: var(--color-navy);
    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 */
/* 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 var(--color-navy);
    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, 58, 95, 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, 58, 95, 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;
    transform: translateY(-160px);
}

.second-carousel-wrapper {
    overflow: visible;
    position: relative;
    width: 100%;
    height: 500px;
    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(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.second-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 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 - 16px);
    height: 350px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 8px;
    position: relative;
}

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

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

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

.second-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;
}

.second-highlight-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
    padding: 0 1.25rem 1.5rem 1.25rem;
    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, 58, 95, 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);
}

.second-carousel-btn:hover {
    background: rgba(30, 58, 95, 0.9);
    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, 58, 95, 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(23, 45, 74, 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;
    }
}


/* Typography helpers */
.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.section-subtext { color: #64748b; }

/* Buttons */
.btn-rust {
    display: inline-block;
    background: var(--color-navy);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 41, 107, 0.25);
    border: none;
    font-family: 'Inter', sans-serif;
}
.btn-rust:hover { 
    background: var(--color-copper);
    transform: translateY(-1px); 
    box-shadow: 0 6px 16px rgba(196, 124, 72, 0.35); 
}
.btn-large { padding: 0.9rem 1.8rem; font-size: 1.05rem; }
.btn-link { color: var(--color-navy); font-weight: 600; text-decoration: none; }
.btn-link:hover { color: var(--color-copper); text-decoration: underline; }

/* Featured Restaurants */
.featured-stays { background: var(--color-fog-white); padding: 32px 0 0; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 { color: var(--color-navy); font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.featured-stays .section-header h2 { white-space: nowrap; }
.section-header.small h2 { margin-bottom: 1.5rem; }
.section-subtext { max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.section-subtext {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section-cta { text-align: center; margin-top: 2rem; }

.stays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.stay-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.stay-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stay-card-link:hover .stay-card { transform: scale(1.05); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.stay-image { height: 220px; overflow: hidden; }
.stay-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.stay-body { padding: 1.25rem; }
.stay-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.5rem; }
.stay-title { font-family: 'Inter', sans-serif; font-size: 1.2rem; color: var(--color-navy); font-weight: 600; }
.stay-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stay-tag {
    background: var(--color-lake-mist);
    color: var(--color-navy);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
.stay-meta { color: #64748b; margin-bottom: 0.75rem; font-size: 0.95rem; }
.stay-rating { display: flex; align-items: center; gap: 0.5rem; }
.star-rating { color: #fbbf24; }
.stay-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }

/* Explore Duluth */
.explore-duluth { background: #ffffff; padding: 32px 0 100px; position: relative; }
.explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.explore-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 2rem; text-align: left; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.explore-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.explore-card h3 { font-family: 'Inter', sans-serif; color: var(--color-navy); font-size: 1.25rem; margin: 0.5rem 0 0.6rem; font-weight: 600; }
.explore-card p { color: #64748b; margin-bottom: 1rem; line-height: 1.6; }

/* Wave divider */
.wave-divider { display: none; }

/* Why Book */
.why-book { background: var(--color-fog-white); padding: 32px 0 100px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; align-items: stretch; }
.trust-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 2rem; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.trust-card h3 { font-family: 'Inter', sans-serif; color: var(--color-navy); margin-bottom: 0.5rem; font-weight: 600; }
.trust-card p { color: #64748b; line-height: 1.6; }

/* Seasonal */
.seasonal { background: #ffffff; padding: 32px 0 100px; }
.season-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.season-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.season-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.season-image { height: 200px; overflow: hidden; }
.season-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.season-card:hover .season-image img { transform: scale(1.05); }
.season-body { padding: 1.25rem; }
.season-body h3 { font-family: 'Inter', sans-serif; color: var(--color-navy); margin-bottom: 0.5rem; font-size: 1.15rem; font-weight: 600; }
.season-body p { color: #64748b; margin-bottom: 1rem; line-height: 1.6; }

/* Email CTA */
.email-cta { background: var(--color-fog-white); padding: 32px 0 100px; }
.email-cta-inner { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 2.5rem; max-width: 720px; margin: 0 auto; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.email-cta-inner h2 { font-family: 'Inter', sans-serif; color: var(--color-navy); margin-bottom: 1.25rem; font-weight: 600; }
.email-form { display: grid; grid-template-columns: 1fr auto; gap: 0.75rem; margin: 0.5rem 0 0.25rem; }
.email-form input { border: 2px solid #e5e7eb; height: 52px; border-radius: 12px; padding: 0 1rem; font-size: 1rem; font-family: 'Inter', sans-serif; transition: all 0.3s ease; }
.email-form input:focus { outline: none; border-color: var(--color-navy); box-shadow: 0 0 0 3px rgba(0, 41, 107, 0.1); }
.email-form button { height: 52px; background: var(--color-navy); color: white; border: none; border-radius: 12px; padding: 0 1.5rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.email-form button:hover { background: var(--color-copper); }
.hint { color: #64748b; font-size: 0.9rem; }

/* Ensure consistent visual length across sections below the hero */
.featured-stays,
.explore-duluth,
.why-book,
.seasonal,
.email-cta {
    min-height: 600px; /* sections can grow if content exceeds */
}

/* Restaurant card specific styles */
.restaurant-card {
    border-radius: 20px;
}

.restaurant-category {
    color: var(--color-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer adjustments for new layout */
.footer { background: var(--color-navy); }
.footer .socials { display: flex; gap: 0.75rem; }
.footer .socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.15); color: #fff; border-radius: 12px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.footer .socials a:hover { background: var(--color-copper); transform: translateY(-2px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive tweaks */
@media (max-width: 768px) {
    .section-header h2 { font-size: 1.75rem; }
    .stay-image { height: 180px; }
    .season-image { height: 160px; }
    .email-form { grid-template-columns: 1fr; }
    .featured-stays {
        padding-bottom: 2rem;
        margin-top: -40px;
        position: relative;
        z-index: 10;
    }
    .explore-duluth {
        padding-top: 2rem;
    }
}
