/* Modern Business Template - Enhanced */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
    --primary: #5c4033;
    --primary-dark: #462e24;
    --primary-light: #8b6a5a;
    --secondary: #c9a959;
    --accent: #8b6a5a;
    --text: #1a202c;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --bg: #f7fafc;
    --bg-alt: #edf2f7;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; }
html { scroll-behavior: smooth; }
body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-brand a {
    text-decoration: none !important;
}
.site-logo {
    display: flex;
    align-items: center;
    padding-right: 15px;
    border-right: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}
.site-logo:hover {
    opacity: 0.8;
}
.site-logo img {
    height: 60px;
    width: auto;
}
.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
    border-bottom: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}
.logo:hover, .logo:visited, .logo:active {
    text-decoration: none !important;
}
.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-links a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}
.vidfeed-icon {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
/* Hero Carousel */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dot:hover, .hero-dot.active {
    background: rgba(255,255,255,0.9);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
    z-index: 3;
}
.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}
.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    -webkit-text-stroke: 2px #000;
    paint-order: stroke fill;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: -1px;
    line-height: 1.2;
}
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    animation: float 4s ease-in-out infinite;
    -webkit-text-stroke: 1px #000;
    paint-order: stroke fill;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-rating .stars { color: #fbbf24; letter-spacing: 2px; -webkit-text-stroke: 1px #000; paint-order: stroke fill; }
.vidfeed-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220,38,38,0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    animation: pulse-glow 2s ease-in-out infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}
.vidfeed-hero-badge:hover {
    transform: scale(1.05);
    background: rgba(220,38,38,1);
}
.vidfeed-hero-badge .live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}
.vidfeed-hero-badge .vidfeed-logo {
    height: 16px;
    width: auto;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(220,38,38,0.5); }
    50% { box-shadow: 0 0 20px rgba(220,38,38,0.8); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-address {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 30px;
    font-weight: 300;
    -webkit-text-stroke: 1px #000;
    paint-order: stroke fill;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    margin-top: 10px;
    -webkit-text-stroke: 1px #000;
    paint-order: stroke fill;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.hero-subpage {
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
}
.hero-subpage .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}
.btn-booking {
    background: linear-gradient(135deg, #0071c2, #003580);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 113, 194, 0.4);
}
.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 113, 194, 0.5);
}
.btn-expedia {
    background: linear-gradient(135deg, #ffc72c, #e6b000);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 199, 44, 0.4);
}
.btn-expedia:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 199, 44, 0.5);
}
.btn-tours {
    background: linear-gradient(135deg, #e4572e, #c43d16);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(228, 87, 46, 0.4);
}
.btn-tours:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(228, 87, 46, 0.5);
}
.btn-gyg {
    background: linear-gradient(135deg, #ff5533, #cc3300);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 85, 51, 0.4);
}
.btn-gyg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 85, 51, 0.5);
}
.btn-review {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}
.btn-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 100px 0;
}
.section h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.5px;
}
.section p { color: var(--text-light); font-size: 1.1rem; }

/* About Preview */
.about-preview {
    background: var(--white);
    text-align: center;
}
.about-preview .container { max-width: 700px; }
.about-preview p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Quick Contact */
.quick-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quick-contact::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 15s infinite;
}
.quick-contact h2 { color: var(--white); position: relative; }
.quick-contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 1.1rem;
}
.contact-item .icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reviews */
.reviews { background: var(--bg); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.review-author {
    font-weight: 600;
    color: var(--text);
}
.review-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 1px; }
.review-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -1px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}
.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 12px;
}
.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}
.about-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text);
}
.hours-list {
    list-style: none;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}
.hours-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-alt);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover::after {
    opacity: 1;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}
.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}
.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.contact-info .contact-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-alt);
    gap: 20px;
}
.contact-info .contact-item:last-child { border-bottom: none; }
.contact-info .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.contact-info a:hover { color: var(--secondary); }
.contact-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Location Section */
.location { background: var(--bg); }
.location h2 { margin-bottom: 12px; }
.location > .container > p { margin-bottom: 30px; }
.map-embed iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Live Cams Section */
.live-cams { background: var(--bg-alt); }
.live-cams h2 { margin-bottom: 40px; }
.live-cams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.live-cams-single {
    max-width: 800px;
    margin: 0 auto;
}
.live-cam-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.live-cam-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.cam-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--white) 100%);
    border-bottom: 2px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}
.cam-header::before {
    content: "📹";
    position: absolute;
    left: 15px;
    font-size: 1.2rem;
    opacity: 0.3;
}
.cam-label {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}
.cam-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
}
.live-cam-card:hover .cam-label::after {
    width: 80%;
}
.vidfeed-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
}
.vidfeed-badge::before {
    content: "powered by";
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vidfeed-badge:hover {
    opacity: 1;
    background: rgba(0,0,0,0.08);
    transform: scale(1.05);
}
.vidfeed-badge img {
    display: block;
    height: 18px;
    width: auto;
    transition: transform 0.3s ease;
}
.vidfeed-badge:hover img {
    transform: rotate(-3deg);
}
.cam-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}
.cam-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a202c 0%, #0d1117 100%);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 30px;
    text-align: center;
}
.footer p { font-size: 0.95rem; margin-bottom: 10px; }
.footer a {
    color: var(--primary-light);
    text-decoration: none;
}
.footer-data-source { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.footer-promo .promo-icon { font-size: 1.1rem; }
.footer-promo .promo-text { font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.footer-branding {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.resort-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 24px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    transition: var(--transition);
}
.resort-guide-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}
.resort-guide-link img {
    height: 30px;
    width: auto;
}

/* Cursor Star Trail */
#star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.cursor-star {
    position: fixed;
    color: var(--primary-light);
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary-light);
    pointer-events: none;
    z-index: 9999;
    transition: none;
}

/* Empty State */
.no-content {
    text-align: center;
    color: var(--text-muted);
    padding: 80px 20px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Navbar scroll state */
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
}
.navbar.scrolled .logo {
    transform: scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }
    .nav-brand {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .site-logo {
        padding-right: 0;
        border-right: none;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .logo { font-size: 1.2rem; }
    .nav-links { gap: 4px; flex-wrap: wrap; justify-content: center; }
    .nav-links a { padding: 8px 14px; font-size: 0.9rem; }
    .hero { height: 70vh; min-height: 500px; }
    .hero-subpage { height: 40vh; min-height: 280px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-subpage .hero-content h1 { font-size: 1.8rem; }
    .hero-rating { padding: 10px 20px; font-size: 0.95rem; }
    .section { padding: 60px 0; }
    .section h2 { font-size: 1.8rem; }
    .quick-contact-info { flex-direction: column; gap: 20px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .live-cams-grid { grid-template-columns: 1fr; }
    .cam-header { flex-direction: column; gap: 10px; padding: 15px; }
    .cam-header::before { display: none; }
    .cam-label { font-size: 1.1rem; padding: 5px 15px; }
    .page-header { padding: 50px 0; }
    .page-header h1 { font-size: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 220px; }
    .contact-info { padding: 24px; }
    .reviews-grid { grid-template-columns: 1fr; }
}
