@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

:root {
    --orange: #ff6b35;
    --orange-light: #ff8c5a;
    --orange-dark: #e05520;
    --yellow: #ffc857;
    --yellow-dark: #e6b340;
    --blue: #1e96fc;
    --blue-light: #5fb8ff;
    --blue-dark: #0a6fcc;
    --teal: #06d6a0;
    --teal-dark: #05b384;
    --pink: #ef476f;
    --purple: #7b2d8e;
    --dark: #1a1a2e;
    --dark-mid: #16213e;
    --dark-light: #0f3460;
    --bg: #fffcf5;
    --bg-warm: #fff8f0;
    --bg-blue: #f0f7ff;
    --bg-green: #f0fff8;
    --text: #2d3142;
    --text-light: #6b7280;
    --white: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
    --shadow-color: 0 8px 30px rgba(255,107,53,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Fredoka One', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== VERSION SWITCHER ===== */
.version-switcher {
    position: fixed; top: 80px; left: 16px; z-index: 999;
    display: flex; flex-direction: column; gap: 6px;
}
.version-btn {
    padding: 8px 14px; border-radius: 10px;
    font-size: 0.72rem; font-weight: 800;
    cursor: pointer; transition: all 0.3s ease;
    text-transform: uppercase; letter-spacing: 1px;
    border: 2px solid; white-space: nowrap;
}
.v1-btn { background: rgba(45,80,22,0.08); border-color: #2d5016; color: #2d5016; }
.v1-btn.active { background: #2d5016; color: white; }
.v2-btn { background: rgba(255,107,53,0.08); border-color: #ff6b35; color: #ff6b35; }
.v2-btn.active { background: linear-gradient(135deg, #ff6b35, #ffc857); color: white; border-color: #ff6b35; }

/* ===== TOP BAR ===== */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--dark); color: white;
    padding: 8px 0; font-size: 0.8rem;
}
.topbar-inner {
    max-width: 1300px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: var(--yellow); }
.topbar-contact { display: flex; gap: 20px; }
.topbar-contact span i { margin-right: 5px; }

/* ===== NAVBAR ===== */
.nav2 {
    position: fixed; top: 34px; left: 0; right: 0; z-index: 999;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    box-shadow: var(--shadow); transition: all 0.3s;
}
.nav2-inner {
    max-width: 1300px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav2-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Fredoka One', sans-serif; font-size: 1.3rem;
    color: var(--orange);
}
.nav2-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    border-radius: 12px; transform: rotate(-5deg);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
}
.nav2-links { display: flex; gap: 6px; list-style: none; }
.nav2-links a {
    padding: 8px 16px; border-radius: 50px; font-weight: 700;
    font-size: 0.85rem; transition: all 0.3s; color: var(--text);
}
.nav2-links a:hover { background: var(--bg-warm); color: var(--orange); }
.nav2-cta {
    padding: 10px 24px; border-radius: 50px; border: none;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white; font-weight: 800; font-size: 0.85rem;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.nav2-cta:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 25px rgba(255,107,53,0.4); }
.nav2-right { display: flex; align-items: center; gap: 12px; }

.lang2 { display: flex; gap: 3px; }
.lang2 button {
    padding: 4px 8px; border: 2px solid #eee; border-radius: 8px;
    background: transparent; cursor: pointer; font-size: 0.7rem;
    font-weight: 800; transition: all 0.3s; color: var(--text-light);
}
.lang2 button.active { background: var(--orange); color: white; border-color: var(--orange); }

.hamburger2 {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 32px; position: relative;
}
.hamburger2 span {
    display: block; width: 24px; height: 3px; background: var(--text);
    border-radius: 3px; position: absolute; left: 4px;
    transition: all 0.3s;
}
.hamburger2 span:nth-child(1) { top: 7px; }
.hamburger2 span:nth-child(2) { top: 15px; }
.hamburger2 span:nth-child(3) { top: 23px; }

/* MOBILE MENU */
.mobile2 {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile2.active { display: flex; }
.mobile2 a { color: white; font-size: 1.5rem; font-weight: 800; }
.mobile2-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* ===== HERO SPLIT ===== */
.hero2 {
    margin-top: 98px; min-height: calc(100vh - 98px);
    display: grid; grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.hero2-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 60px 60px 60px 80px;
    background: var(--bg-warm);
    position: relative;
}
.hero2-left::before {
    content: ''; position: absolute; top: -50px; left: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,107,53,0.08);
}
.hero2-left::after {
    content: ''; position: absolute; bottom: -30px; right: 30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(255,200,87,0.12);
}
.hero2-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,200,87,0.1));
    padding: 8px 20px; border-radius: 50px; font-size: 0.8rem;
    font-weight: 800; color: var(--orange); margin-bottom: 20px;
    width: fit-content; border: 2px solid rgba(255,107,53,0.15);
}
.hero2-tag i { font-size: 1rem; }
.hero2 h1 {
    font-size: 3.5rem; line-height: 1.15; margin-bottom: 20px;
    color: var(--dark);
}
.hero2 h1 span {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero2-desc { font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.8; font-weight: 600; }
.hero2-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero2-btn {
    padding: 14px 30px; border-radius: 50px; font-weight: 800;
    font-size: 0.95rem; cursor: pointer; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px; border: none;
}
.hero2-btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white; box-shadow: var(--shadow-color);
}
.hero2-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,53,0.35); }
.hero2-btn-outline {
    background: white; color: var(--orange); border: 2px solid var(--orange);
}
.hero2-btn-outline:hover { background: var(--orange); color: white; }

.hero2-badges {
    display: flex; gap: 24px; position: relative; z-index: 2;
}
.hero2-badge {
    display: flex; align-items: center; gap: 10px;
    background: white; padding: 12px 20px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}
.hero2-badge-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white;
}
.hero2-badge-icon.orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.hero2-badge-icon.blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.hero2-badge-icon.teal { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.hero2-badge-num { font-family: 'Fredoka One'; font-size: 1.3rem; color: var(--dark); }
.hero2-badge-label { font-size: 0.7rem; color: var(--text-light); font-weight: 700; }

.hero2-right {
    position: relative; overflow: hidden;
}
.hero2-right img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero2-right::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(6,214,160,0.1));
}
.hero2-float {
    position: absolute; bottom: 30px; left: 30px; z-index: 2;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    padding: 16px 24px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
}
.hero2-float-stars { color: var(--yellow-dark); font-size: 0.9rem; }
.hero2-float-text { font-weight: 800; font-size: 0.9rem; }
.hero2-float-sub { font-size: 0.75rem; color: var(--text-light); }

/* ===== MARQUEE ===== */
.marquee {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner {
    display: inline-block; animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
    display: inline-flex; align-items: center; gap: 8px;
    margin-right: 50px; color: white; font-weight: 800; font-size: 0.9rem;
}
.marquee-item i { font-size: 1.1rem; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.s { padding: 90px 0; }
.s-warm { background: var(--bg-warm); }
.s-blue { background: var(--bg-blue); }
.s-green { background: var(--bg-green); }
.s-dark { background: linear-gradient(135deg, var(--dark), var(--dark-mid), var(--dark-light)); color: white; }
.wrap { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.s-head { margin-bottom: 50px; }
.s-head-left { text-align: left; }
.s-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px; border-radius: 50px; font-size: 0.75rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}
.s-tag-orange { background: rgba(255,107,53,0.1); color: var(--orange); }
.s-tag-blue { background: rgba(30,150,252,0.1); color: var(--blue); }
.s-tag-teal { background: rgba(6,214,160,0.1); color: var(--teal); }
.s-tag-yellow { background: rgba(255,200,87,0.15); color: var(--yellow-dark); }
.s-tag-white { background: rgba(255,255,255,0.15); color: white; }
.s-title { font-size: 2.5rem; margin-bottom: 12px; line-height: 1.2; }
.s-sub { color: var(--text-light); font-size: 1.05rem; max-width: 600px; font-weight: 600; }
.s-dark .s-sub { color: rgba(255,255,255,0.7); }
.s-center { text-align: center; }
.s-center .s-sub { margin: 0 auto; }

/* ===== ABOUT: BENTO GRID ===== */
.bento {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px; gap: 16px;
}
.bento-card {
    background: white; border-radius: var(--radius);
    padding: 28px; display: flex; flex-direction: column;
    justify-content: flex-end; position: relative; overflow: hidden;
    box-shadow: var(--shadow); transition: all 0.4s;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento-big { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-img {
    position: absolute; inset: 0;
}
.bento-img img { width: 100%; height: 100%; object-fit: cover; }
.bento-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.7));
}
.bento-img ~ * { position: relative; z-index: 2; color: white; }
.bento-icon {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white; margin-bottom: 12px;
}
.bento-icon.orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.bento-icon.blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.bento-icon.teal { background: linear-gradient(135deg, var(--teal), #00e5a0); }
.bento-icon.pink { background: linear-gradient(135deg, var(--pink), #ff8fa3); }
.bento-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.bento-card p { font-size: 0.82rem; color: var(--text-light); font-weight: 600; }
.bento-img ~ p { color: rgba(255,255,255,0.8); }

/* ===== ACCOMMODATIONS: HORIZONTAL SCROLL ===== */
.acc2-scroll {
    display: flex; gap: 24px; overflow-x: auto;
    padding: 10px 0 30px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.acc2-scroll::-webkit-scrollbar { display: none; }
.acc2-card {
    min-width: 320px; max-width: 340px; flex-shrink: 0;
    background: white; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    scroll-snap-align: start; transition: all 0.4s;
    border: 3px solid transparent;
}
.acc2-card:hover { border-color: var(--orange); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.acc2-img { height: 200px; position: relative; overflow: hidden; }
.acc2-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.acc2-card:hover .acc2-img img { transform: scale(1.1); }
.acc2-price {
    position: absolute; bottom: 12px; right: 12px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white; padding: 6px 16px; border-radius: 50px;
    font-weight: 900; font-size: 0.9rem;
}
.acc2-body { padding: 20px; }
.acc2-body h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--dark); }
.acc2-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; font-weight: 600; }
.acc2-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.acc2-tag {
    padding: 4px 12px; border-radius: 50px; font-size: 0.72rem;
    font-weight: 700; background: var(--bg-warm); color: var(--orange);
    border: 1px solid rgba(255,107,53,0.15);
}
.acc2-btn {
    display: block; text-align: center; padding: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white; border-radius: var(--radius-sm); font-weight: 800;
    font-size: 0.9rem; transition: all 0.3s; border: none; cursor: pointer; width: 100%;
}
.acc2-btn:hover { box-shadow: var(--shadow-color); transform: translateY(-2px); }

/* ===== PRICING: CARDS ===== */
.price2-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price2-card {
    background: white; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s;
    border: 3px solid transparent;
}
.price2-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.price2-card-head {
    padding: 24px; text-align: center;
    color: white; position: relative;
}
.price2-card:nth-child(1) .price2-card-head { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.price2-card:nth-child(2) .price2-card-head { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.price2-card:nth-child(3) .price2-card-head { background: linear-gradient(135deg, var(--teal), #00e5a0); }
.price2-card-head h3 { font-size: 1.2rem; }
.price2-card-head i { font-size: 2rem; margin-bottom: 8px; }
.price2-card-body { padding: 20px; }
.price2-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid #f0f0f0;
    font-size: 0.88rem; font-weight: 600;
}
.price2-row:last-child { border-bottom: none; }
.price2-val { font-weight: 900; color: var(--orange); }

/* ===== RESERVATION ===== */
.res2-layout {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px;
}
.res2-cal {
    background: white; border-radius: var(--radius);
    padding: 30px; box-shadow: var(--shadow);
    border: 3px solid rgba(255,107,53,0.08);
}
.res2-form {
    background: linear-gradient(135deg, var(--dark), var(--dark-mid));
    border-radius: var(--radius); padding: 30px; color: white;
    box-shadow: var(--shadow-lg);
}
.res2-form h3 { color: var(--yellow); margin-bottom: 20px; }
.res2-form label { display: block; font-weight: 700; font-size: 0.82rem; margin-bottom: 5px; color: rgba(255,255,255,0.8); }
.res2-form input, .res2-form select, .res2-form textarea {
    width: 100%; padding: 11px 14px; border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm); font-size: 0.9rem;
    font-family: 'Nunito', sans-serif; transition: all 0.3s;
    background: rgba(255,255,255,0.08); color: white;
    margin-bottom: 14px;
}
.res2-form input::placeholder, .res2-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.res2-form input:focus, .res2-form select:focus, .res2-form textarea:focus {
    outline: none; border-color: var(--orange);
    background: rgba(255,255,255,0.12);
}
.res2-form textarea { resize: vertical; min-height: 70px; }
.res2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.res2-submit {
    width: 100%; padding: 14px; border: none; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white; font-weight: 900; font-size: 1rem;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Fredoka One', sans-serif;
}
.res2-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.4); }

/* calendar reuse from v1 */
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.calendar-header h3 { font-size: 1.1rem; }
.calendar-nav { display: flex; gap: 6px; }
.calendar-nav button {
    width: 34px; height: 34px; border-radius: 50%; border: 2px solid #eee;
    background: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; font-size: 0.8rem;
}
.calendar-nav button:hover { background: var(--orange); color: white; border-color: var(--orange); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day-label { text-align: center; font-weight: 800; font-size: 0.72rem; color: var(--text-light); padding: 6px 0; }
.calendar-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-size: 0.82rem; font-weight: 700; cursor: default; transition: all 0.2s;
}
.calendar-day.empty { background: transparent; }
.calendar-day.available { background: rgba(6,214,160,0.12); color: var(--teal-dark); cursor: pointer; }
.calendar-day.available:hover { background: var(--teal); color: white; }
.calendar-day.booked { background: rgba(239,71,111,0.1); color: var(--pink); cursor: not-allowed; }
.calendar-day.selected { background: linear-gradient(135deg, var(--orange), var(--yellow)); color: white; }
.calendar-day.in-range { background: var(--orange-light); color: white; opacity: 0.7; }
.calendar-day.today { box-shadow: inset 0 0 0 2px var(--orange); }
.calendar-day.past { opacity: 0.25; cursor: not-allowed; }
.calendar-legend { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 700; }
.legend-dot { width: 12px; height: 12px; border-radius: 4px; }
.legend-dot.available { background: rgba(6,214,160,0.3); }
.legend-dot.booked { background: rgba(239,71,111,0.2); }
.legend-dot.selected { background: var(--orange); }

.accommodation-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.acc-option {
    padding: 10px; border: 2px solid #eee; border-radius: var(--radius-sm);
    cursor: pointer; text-align: center; transition: all 0.3s;
    font-size: 0.78rem; font-weight: 700;
}
.acc-option:hover { border-color: var(--orange); }
.acc-option.selected { border-color: var(--orange); background: rgba(255,107,53,0.05); color: var(--orange); }
.acc-option i { display: block; font-size: 1.2rem; margin-bottom: 3px; }

.form-message { padding: 12px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 14px; display: none; font-weight: 700; }
.form-message.success { background: rgba(6,214,160,0.15); color: var(--teal-dark); display: block; }
.form-message.error { background: rgba(239,71,111,0.15); color: var(--pink); display: block; }

/* ===== GALLERY: MASONRY ===== */
.gallery2 {
    columns: 4; column-gap: 16px;
}
.gallery2-item {
    break-inside: avoid; margin-bottom: 16px;
    border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer;
}
.gallery2-item img { width: 100%; display: block; transition: transform 0.5s; }
.gallery2-item:hover img { transform: scale(1.08); }
.gallery2-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(255,107,53,0.4));
    opacity: 0; transition: opacity 0.3s;
}
.gallery2-item:hover::after { opacity: 1; }

/* ===== LAKE: FULL WIDTH ===== */
.lake2 {
    position: relative; padding: 100px 0;
    background: url('https://mazury-gleboczek.pl/wp-content/uploads/2023/06/292099685_436241515181244_3394055786835253177_n.jpg') center/cover fixed;
}
.lake2::before { content: ''; position: absolute; inset: 0; background: rgba(15,52,96,0.85); }
.lake2 .wrap { position: relative; z-index: 2; }
.lake2-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.lake2 h2 { color: white; }
.lake2 p { color: rgba(255,255,255,0.8); font-weight: 600; }
.fish2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.fish2-card {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm); padding: 16px; text-align: center;
    transition: all 0.3s;
}
.fish2-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.fish2-card i { font-size: 1.5rem; color: var(--yellow); margin-bottom: 6px; }
.fish2-card span { display: block; font-weight: 700; font-size: 0.85rem; color: white; }

/* ===== ACTIVITIES: ICON STRIP ===== */
.act2-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.act2-card {
    text-align: center; padding: 30px 16px;
    background: white; border-radius: var(--radius);
    box-shadow: var(--shadow); transition: all 0.4s;
    border: 3px solid transparent;
}
.act2-card:hover { border-color: var(--orange); transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.act2-icon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 1.5rem; color: white;
    transform: rotate(-5deg);
}
.act2-card:nth-child(1) .act2-icon { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.act2-card:nth-child(2) .act2-icon { background: linear-gradient(135deg, var(--teal), #00e5a0); }
.act2-card:nth-child(3) .act2-icon { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.act2-card:nth-child(4) .act2-icon { background: linear-gradient(135deg, var(--pink), #ff8fa3); }
.act2-card:nth-child(5) .act2-icon { background: linear-gradient(135deg, var(--purple), #a855f7); }
.act2-card:nth-child(6) .act2-icon { background: linear-gradient(135deg, var(--yellow-dark), var(--orange)); }
.act2-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.act2-card p { font-size: 0.78rem; color: var(--text-light); font-weight: 600; }

/* ===== DISTANCES ===== */
.dist2-strip {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px;
}
.dist2-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; padding: 10px 20px; border-radius: 50px;
    box-shadow: var(--shadow); font-weight: 700; font-size: 0.85rem;
}
.dist2-chip-time {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 900;
}

/* ===== REVIEWS: CARDS OVERLAP ===== */
.rev2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev2-card {
    background: white; border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow);
    position: relative; overflow: hidden;
    border-top: 4px solid;
    transition: all 0.4s;
}
.rev2-card:nth-child(1) { border-top-color: var(--orange); }
.rev2-card:nth-child(2) { border-top-color: var(--blue); }
.rev2-card:nth-child(3) { border-top-color: var(--teal); }
.rev2-card:hover { transform: translateY(-5px); }
.rev2-card::before {
    content: '\201C'; position: absolute; top: 10px; right: 20px;
    font-size: 6rem; color: rgba(0,0,0,0.03); font-family: 'Fredoka One'; line-height: 1;
}
.rev2-stars { color: var(--yellow-dark); margin-bottom: 12px; }
.rev2-text { font-size: 0.9rem; color: var(--text-light); font-style: italic; margin-bottom: 16px; font-weight: 600; line-height: 1.7; }
.rev2-author { display: flex; align-items: center; gap: 12px; }
.rev2-avatar {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: white; font-size: 1rem;
}
.rev2-card:nth-child(1) .rev2-avatar { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.rev2-card:nth-child(2) .rev2-avatar { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.rev2-card:nth-child(3) .rev2-avatar { background: linear-gradient(135deg, var(--teal), #00e5a0); }
.rev2-name { font-weight: 800; font-size: 0.9rem; }
.rev2-source { font-size: 0.72rem; color: var(--text-light); }

/* ===== WEATHER V2 ===== */
.weather2 {
    display: grid; grid-template-columns: 1fr 2fr; gap: 24px;
}
.weather2-now {
    background: linear-gradient(135deg, var(--orange), var(--yellow), var(--teal));
    border-radius: var(--radius); padding: 36px; color: white; text-align: center;
    box-shadow: var(--shadow-color); display: flex; flex-direction: column; justify-content: center;
}
.weather2-now-icon { font-size: 4rem; margin-bottom: 8px; }
.weather2-now-temp { font-family: 'Fredoka One'; font-size: 3.5rem; line-height: 1; }
.weather2-now-desc { font-weight: 700; opacity: 0.9; margin-top: 4px; font-size: 1rem; }
.weather2-now-details { display: flex; justify-content: center; gap: 20px; margin-top: 16px; font-size: 0.82rem; }
.weather2-now-details span { display: flex; align-items: center; gap: 5px; font-weight: 700; opacity: 0.85; }

.weather2-forecast { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.weather2-fday {
    background: white; border-radius: var(--radius); padding: 20px 12px;
    text-align: center; box-shadow: var(--shadow); transition: all 0.3s;
    border: 2px solid transparent;
}
.weather2-fday:hover { border-color: var(--orange); transform: translateY(-5px); }
.weather2-fday-name { font-weight: 900; font-size: 0.82rem; color: var(--text); margin-bottom: 10px; text-transform: uppercase; }
.weather2-fday-icon { font-size: 1.8rem; color: var(--orange); margin-bottom: 8px; }
.weather2-fday-temps { display: flex; justify-content: center; gap: 8px; align-items: baseline; }
.weather2-fday-max { font-family: 'Fredoka One'; font-size: 1.3rem; color: var(--dark); }
.weather2-fday-min { font-size: 0.85rem; color: var(--text-light); font-weight: 700; }
.weather2-fday-rain { font-size: 0.72rem; color: var(--blue); margin-top: 6px; font-weight: 700; }

/* ===== CONTACT V2 ===== */
.contact2-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px;
}
.contact2-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.contact2-card {
    background: white; border-radius: var(--radius-sm); padding: 20px;
    box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
    transition: all 0.3s; border: 2px solid transparent;
}
.contact2-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.contact2-icon {
    width: 46px; height: 46px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: white; flex-shrink: 0;
}
.contact2-card:nth-child(1) .contact2-icon { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.contact2-card:nth-child(2) .contact2-icon { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.contact2-card:nth-child(3) .contact2-icon { background: linear-gradient(135deg, var(--teal), #00e5a0); }
.contact2-card:nth-child(4) .contact2-icon { background: linear-gradient(135deg, var(--pink), #ff8fa3); }
.contact2-card:nth-child(5) .contact2-icon { background: linear-gradient(135deg, var(--purple), #a855f7); }
.contact2-label { font-size: 0.7rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.contact2-val { font-weight: 800; font-size: 0.9rem; }
.contact2-val a { color: var(--orange); }

.contact2-map {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    border: 3px solid rgba(255,107,53,0.1);
    min-height: 380px;
}
.contact2-map iframe { width: 100%; height: 100%; border: none; min-height: 380px; }

/* ===== FOOTER V2 ===== */
.footer2 {
    background: linear-gradient(135deg, var(--dark), var(--dark-mid));
    padding: 60px 0 24px; color: rgba(255,255,255,0.7);
}
.footer2-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer2 h4 { color: white; font-family: 'Fredoka One'; font-size: 1rem; margin-bottom: 14px; }
.footer2 p { font-size: 0.85rem; }
.footer2-links { list-style: none; }
.footer2-links li { margin-bottom: 6px; }
.footer2-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.footer2-links a:hover { color: var(--yellow); }
.footer2-social { display: flex; gap: 10px; margin-top: 14px; }
.footer2-social a {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,200,87,0.15));
    display: flex; align-items: center; justify-content: center;
    color: white; transition: all 0.3s;
}
.footer2-social a:hover { background: linear-gradient(135deg, var(--orange), var(--yellow)); transform: rotate(5deg) scale(1.1); }
.footer2-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.8rem; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero2 { grid-template-columns: 1fr; }
    .hero2-left { padding: 40px 30px; }
    .hero2-right { height: 50vh; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .act2-grid { grid-template-columns: repeat(3, 1fr); }
    .price2-grid { grid-template-columns: 1fr; }
    .res2-layout { grid-template-columns: 1fr; }
    .lake2-content { grid-template-columns: 1fr; }
    .weather2 { grid-template-columns: 1fr; }
    .contact2-grid { grid-template-columns: 1fr; }
    .footer2-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .topbar-contact { display: none; }
    .nav2-links { display: none; }
    .hamburger2 { display: block; }
    .hero2 h1 { font-size: 2.4rem; }
    .hero2-badges { flex-direction: column; gap: 10px; }
    .bento { grid-template-columns: 1fr; }
    .bento-big, .bento-tall, .bento-wide { grid-column: span 1; grid-row: span 1; }
    .bento-card { min-height: 160px; }
    .act2-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery2 { columns: 2; }
    .rev2-grid { grid-template-columns: 1fr; }
    .weather2-forecast { grid-template-columns: repeat(3, 1fr); }
    .fish2-grid { grid-template-columns: repeat(2, 1fr); }
    .contact2-cards { grid-template-columns: 1fr; }
    .footer2-grid { grid-template-columns: 1fr; }
    .version-switcher { top: 105px; }
    .accommodation-select { grid-template-columns: repeat(2, 1fr); }
    .res2-row { grid-template-columns: 1fr; }
    .s-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .gallery2 { columns: 1; }
    .act2-grid { grid-template-columns: 1fr; }
    .weather2-forecast { grid-template-columns: repeat(2, 1fr); }
}
