/* =============================================
   holstrandoljak.com – Main Stylesheet
   ============================================= */

:root {
    --ocean-deep: #0a4d68;
    --ocean-mid: #088395;
    --ocean-light: #05bfdb;
    --sand: #f5e6c8;
    --sand-light: #fdf6ec;
    --sand-dark: #d4a95a;
    --sunset-orange: #ff6b35;
    --sunset-pink: #ff8e72;
    --sunset-gold: #ffc947;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray-light: #f8f9fa;
    --shadow-soft: 0 4px 24px rgba(10, 77, 104, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 77, 104, 0.12);
    --shadow-lg: 0 16px 48px rgba(10, 77, 104, 0.16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand-light); }
::-webkit-scrollbar-thumb { background: var(--ocean-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ocean-mid); }

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 77, 104, 0.06);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1000;
}

.navbar-custom.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(10, 77, 104, 0.1);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    height: 36px;
    width: auto;
    transition: opacity 0.3s;
}

.navbar-logo:hover {
    opacity: 0.85;
}

.nav-link-custom {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark) !important;
    padding: 8px 18px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link-custom:hover { color: var(--ocean-mid) !important; background: rgba(8, 131, 149, 0.06); }
.nav-link-custom.active { color: var(--ocean-mid) !important; }

.btn-nav-login {
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-deep));
    color: white !important;
    font-weight: 600;
    padding: 8px 24px !important;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(8, 131, 149, 0.25);
}

.btn-nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(8, 131, 149, 0.35);
    color: white !important;
}

.navbar-toggler-custom {
    border: none;
    padding: 8px;
    background: rgba(10, 77, 104, 0.05);
    border-radius: 10px;
}
.navbar-toggler-custom:focus { box-shadow: none; }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(175deg, #e0f7fa 0%, #b2ebf2 25%, #80deea 50%, #4dd0e1 75%, #26c6da 100%);
}

.hero-bg-layer { position: absolute; inset: 0; z-index: 0; }

/* Sun */
.sun {
    position: absolute;
    top: 8%;
    right: 12%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--sunset-gold) 0%, var(--sunset-orange) 60%, transparent 70%);
    border-radius: 50%;
    animation: sunPulse 4s ease-in-out infinite;
    z-index: 1;
}

.sun::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255, 201, 71, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: sunGlow 3s ease-in-out infinite alternate;
}

@keyframes sunPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes sunGlow { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 1; transform: scale(1.2); } }

/* Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    z-index: 1;
}
.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.cloud-1 { width: 120px; height: 40px; top: 15%; left: -150px; animation: cloudFloat 25s linear infinite; }
.cloud-1::before { width: 60px; height: 60px; top: -30px; left: 20px; }
.cloud-1::after { width: 45px; height: 45px; top: -20px; left: 55px; }

.cloud-2 { width: 90px; height: 30px; top: 22%; left: -120px; animation: cloudFloat 35s linear infinite 8s; opacity: 0.7; }
.cloud-2::before { width: 45px; height: 45px; top: -22px; left: 15px; }
.cloud-2::after { width: 35px; height: 35px; top: -15px; left: 42px; }

.cloud-3 { width: 100px; height: 35px; top: 10%; left: -130px; animation: cloudFloat 30s linear infinite 15s; opacity: 0.6; }
.cloud-3::before { width: 50px; height: 50px; top: -25px; left: 18px; }
.cloud-3::after { width: 40px; height: 40px; top: -18px; left: 48px; }

@keyframes cloudFloat { from { transform: translateX(0); } to { transform: translateX(calc(100vw + 300px)); } }

/* Waves */
.waves-container { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; overflow: hidden; z-index: 2; }
.wave { position: absolute; bottom: 0; left: -5%; width: 110%; height: 100%; }
.wave svg { width: 100%; height: 100%; }

/* Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: bubbleRise linear infinite;
    z-index: 1;
}
@keyframes bubbleRise {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* Water shimmer */
.water-shimmer {
    position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(to top, rgba(5, 191, 219, 0.15) 0%, transparent 100%);
    z-index: 1;
}
.water-sparkle {
    position: absolute; width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.8); border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}
@keyframes sparkle { 0%, 100% { opacity: 0; transform: scale(0); } 50% { opacity: 1; transform: scale(1); } }

/* Hero content */
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 20px; max-width: 800px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(10px);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
    color: var(--ocean-deep); margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.8s ease-out;
}
.hero-badge i { color: var(--sunset-orange); }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700; color: var(--ocean-deep);
    line-height: 1.1; margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-title .highlight { position: relative; display: inline-block; color: var(--sunset-orange); }
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
    height: 8px; background: rgba(255, 107, 53, 0.2); border-radius: 4px; z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(10, 77, 104, 0.75);
    font-weight: 400; line-height: 1.7; max-width: 560px;
    margin: 0 auto 36px; animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
    color: white; font-weight: 700; font-size: 1.05rem;
    padding: 16px 36px; border-radius: 16px; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
    display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255, 107, 53, 0.45); color: white; }

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.35); backdrop-filter: blur(10px);
    color: var(--ocean-deep); font-weight: 600; font-size: 1.05rem;
    padding: 16px 32px; border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4); cursor: pointer;
    transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
}
.btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.55); transform: translateY(-2px); color: var(--ocean-deep); }

.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 56px; animation: fadeInUp 0.8s ease-out 0.8s both; }
.hero-stat { text-align: center; }
.hero-stat-value { font-size: 1.8rem; font-weight: 800; color: var(--ocean-deep); display: block; }
.hero-stat-label { font-size: 0.82rem; color: rgba(10, 77, 104, 0.6); font-weight: 500; margin-top: 2px; }

/* ===== SECTIONS ===== */
.section-beaches { padding: 100px 0 80px; background: var(--white); position: relative; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600; color: var(--ocean-mid);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-tag::before, .section-tag::after { content: ''; width: 24px; height: 2px; background: var(--ocean-light); border-radius: 2px; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--dark); margin-bottom: 12px;
}
.section-subtitle { font-size: 1.05rem; color: #6b7b8d; max-width: 500px; margin: 0 auto; }

/* ===== BEACH CARDS ===== */
.beach-card {
    background: var(--white); border-radius: var(--radius-md); overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(10, 77, 104, 0.06); box-shadow: var(--shadow-soft);
    height: 100%; display: flex; flex-direction: column;
}
.beach-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(8, 131, 149, 0.15); }

.beach-card-img { position: relative; height: 220px; overflow: hidden; }
.beach-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.beach-card:hover .beach-card-img img { transform: scale(1.08); }

.beach-card-img .overlay-gradient {
    position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); z-index: 1;
}
.beach-card-img .beach-type-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: 10px; font-size: 0.78rem;
    font-weight: 600; color: var(--ocean-deep); z-index: 2;
}

.beach-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.beach-card-name { font-weight: 700; font-size: 1.2rem; color: var(--dark); margin-bottom: 6px; }
.beach-card-desc { font-size: 0.9rem; color: #8895a4; margin-bottom: 16px; line-height: 1.5; }

.beach-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.beach-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; background: var(--sand-light); border-radius: 8px;
    font-size: 0.78rem; font-weight: 500; color: var(--sand-dark);
}
.beach-tag i { font-size: 0.7rem; }

.beach-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 16px;
    border-top: 1px solid rgba(10, 77, 104, 0.06);
}

.beach-rating { display: flex; align-items: center; gap: 6px; }
.beach-rating .stars { display: flex; gap: 2px; }
.beach-rating .stars i { color: #ddd; font-size: 0.85rem; transition: color 0.3s; }
.beach-rating .stars i.active { color: var(--sunset-gold); }
.beach-rating-text { font-size: 0.82rem; color: #8895a4; font-weight: 500; }

.btn-beach-view {
    font-size: 0.85rem; font-weight: 600; color: var(--ocean-mid);
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 10px; transition: all 0.3s ease;
}
.btn-beach-view:hover { background: rgba(8, 131, 149, 0.08); color: var(--ocean-deep); gap: 10px; }

/* Beach image placeholders */
.beach-img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; font-size: 3rem; color: rgba(255, 255, 255, 0.7);
}
.beach-img-1 { background: linear-gradient(135deg, #4dd0e1 0%, #00838f 100%); }
.beach-img-2 { background: linear-gradient(135deg, #ff8a65 0%, #ff5722 100%); }
.beach-img-3 { background: linear-gradient(135deg, #81c784 0%, #388e3c 100%); }

/* ===== WHY US SECTION ===== */
.section-why {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--sand-light) 0%, var(--white) 100%);
    position: relative;
}
.section-why::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 77, 104, 0.08), transparent);
}

.why-card {
    background: var(--white); border-radius: var(--radius-md);
    padding: 40px 32px; text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(10, 77, 104, 0.05);
    box-shadow: var(--shadow-soft); height: 100%;
    position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(135deg, var(--ocean-light), var(--ocean-mid));
    transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.why-card-icon {
    width: 72px; height: 72px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 1.6rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover .why-card-icon { transform: scale(1.1) rotate(-5deg); }

.why-icon-weather { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: var(--sunset-orange); }
.why-icon-reviews { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); color: var(--ocean-mid); }
.why-icon-search { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #43a047; }

.why-card-title { font-weight: 700; font-size: 1.15rem; color: var(--dark); margin-bottom: 10px; }
.why-card-text { font-size: 0.92rem; color: #8895a4; line-height: 1.65; }

/* ===== CTA / SEARCH ===== */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, var(--ocean-light) 100%);
    position: relative; overflow: hidden;
}
.section-cta::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.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); max-width: 480px; margin: 0 auto 36px; }

.search-box {
    max-width: 580px; margin: 0 auto; display: flex;
    background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px; padding: 6px; backdrop-filter: blur(10px);
}
.search-box input {
    flex: 1; border: none; background: transparent;
    padding: 14px 20px; font-family: 'Outfit', sans-serif;
    font-size: 1rem; color: white; outline: none;
}
.search-box input::placeholder { color: rgba(255, 255, 255, 0.5); }
.search-box button {
    background: var(--sunset-orange); color: white; border: none;
    padding: 14px 28px; border-radius: 14px; font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
}
.search-box button:hover { background: var(--sunset-pink); transform: scale(1.02); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.6); padding: 72px 0 0; }

.footer-brand {
    font-weight: 800; font-size: 1.3rem; color: var(--white);
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.footer-brand .brand-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light));
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 1rem;
}

.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.06); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.5); text-decoration: none;
    transition: all 0.3s ease; font-size: 0.95rem;
}
.footer-social a:hover { background: var(--ocean-mid); color: white; transform: translateY(-3px); }

.footer-heading {
    font-weight: 700; font-size: 0.92rem; color: var(--white);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.5); text-decoration: none;
    font-size: 0.9rem; transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--ocean-light); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px; padding: 24px 0;
    font-size: 0.83rem;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-credit {
    opacity: 0.6;
    font-size: 0.78rem;
}

.footer-credit a {
    color: var(--ocean-light);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.footer-credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-stats { gap: 32px; }
    .sun { width: 100px; height: 100px; top: 10%; right: 8%; }
}

@media (max-width: 768px) {
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 1.4rem; }
    .search-box { flex-direction: column; }
    .search-box button { justify-content: center; }
    .sun { width: 80px; height: 80px; }
}

/* ===== HIRDETÉSI ZÓNÁK ===== */
.ad-zone {
    text-align: center;
    overflow: hidden;
    background: transparent;
}

.ad-zone-header {
    max-width: 728px;
    margin: 0 auto 24px;
    padding-top: 8px;
}

.ad-zone-content {
    max-width: 728px;
    margin: 28px auto;
    padding: 0 16px;
}

.ad-zone-sidebar {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.ad-zone-footer {
    max-width: 728px;
    margin: 0 auto;
    padding: 24px 16px 0;
}

.ad-zone-between-cards {
    margin: 8px 0;
    border-radius: 12px;
    overflow: hidden;
}

/* Admin: hirdetés nélkül */
.ad-zone ins { background: transparent !important; }