﻿/* ==============================
   HERO SECTION (FIXED)
============================== */
.hero-section {
    position: relative;
    height: 80vh;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    margin: 40px auto;
    max-width: 2000px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Hero image – švelnus parallax judesys */
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroMove 18s ease-in-out infinite alternate;
}

@keyframes heroMove {
    0% {
        transform: scale(1.05) translateY(0);
    }

    100% {
        transform: scale(1.1) translateY(-3%);
    }
}

/* Tamsus permatomas sluoksnis virš nuotraukos */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    z-index: 1;
}

/* Tekstinis turinys */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 700px;
    animation: fadeInUp 1.5s ease both;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-weight: 400;
        color: #f0f0f0;
    }

    /* Book Now mygtukas – subtilus ir elegantiškas */
    .hero-content .btn-primary {
        font-size: 1rem;
        font-weight: 600;
        padding: 10px 28px;
        border-radius: 50px;
        background: linear-gradient(135deg, #0f5132, #198754);
        border: none;
        animation: pulseGlow 2.5s infinite;
        box-shadow: 0 0 12px rgba(25, 135, 84, 0.6);
        transition: all 0.3s ease;
    }

        .hero-content .btn-primary:hover {
            background: linear-gradient(135deg, #198754, #0f5132);
            transform: translateY(-3px);
        }

/* Teksto atsiradimo efektas */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulsuojanti mygtuko šviesa */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(25, 135, 84, 0.4);
    }

    50% {
        box-shadow: 0 0 22px rgba(25, 135, 84, 0.8);
    }

    100% {
        box-shadow: 0 0 10px rgba(25, 135, 84, 0.4);
    }
}

/* ==============================
   RESPONSIVE FIXES
============================== */
@media (max-width: 992px) {
    .hero-section {
        height: 65vh;
        margin: 25px auto;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-content .btn-primary {
        font-size: 0.95rem;
        padding: 9px 24px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
        border-radius: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .btn-primary {
        padding: 8px 22px;
    }
}
/* ==============================
   FOOTER
============================== */
.site-footer {
    background: linear-gradient(135deg, #0f5132, #198754);
    color: #f8f9fa;
    padding: 20px 0 25px;
    margin-top: 80px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 55px;
    width: auto;
    border-radius: 12px;
    background: white;
    padding: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.footer-left p {
    margin: 0;
    font-size: 0.95rem;
    color: #e9ecef;
    font-weight: 400;
}

.footer-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-right a {
        color: #e9ecef;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .footer-right a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        flex-direction: column;
        gap: 10px;
    }

    .footer-right {
        justify-content: center;
        gap: 15px;
    }

    .footer-logo {
        height: 50px;
    }
}
/* ======== CARD STYLE ======== */
.custom-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

    .custom-card img {
        object-fit: cover;
        height: 250px;
        width: 100%;
        transition: transform 0.4s ease;
    }

    .custom-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

        .custom-card:hover img {
            transform: scale(1.05);
        }

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #555;
    font-size: 0.95rem;
}

/* ======== SECTION TITLES ======== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0f5132;
}

/* ======== BUTTON ======== */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #198754, #157347);
    color: white;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 999;
}

    .floating-button:hover {
        background: linear-gradient(135deg, #157347, #0f5132);
        transform: translateY(-4px);
    }

/* ======== FOOTER FIX (jei reikia) ======== */
footer {
    background: #0f5132;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

    footer p {
        margin: 0;
        font-size: 0.9rem;
    }
/* === General Section === */
.services-wrapper h1 {
    letter-spacing: 1px;
}

/* === Service Cards === */
.service-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .service-card img {
        object-fit: cover;
        width: 100%;
        height: 230px;
        transition: transform 0.5s ease;
    }

    .service-card:hover img {
        transform: scale(1.05);
    }

/* === Comment Form === */
.comment-form .emoji-row {
    user-select: none;
}

.comment-form .emoji {
    font-size: 1.3rem;
    margin: 0 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .comment-form .emoji:hover {
        transform: scale(1.3);
    }

.comment-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* === Packages & Hours === */
.packages-hours .card {
    border-radius: 16px;
}

.package-card {
    background-color: #fdfefc;
}

.opening-card {
    background-color: #f9fbff;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
    .service-card img {
        height: 180px;
    }

    .packages-hours .col-md-6 {
        margin-bottom: 1rem;
    }
}
.footer-right .link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background 0.18s ease, transform 0.18s ease;
    font-size: 1.25rem;
}

.footer-right .link-icon:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    color: #fff !important;
}

@media (min-width: 992px) {
    .footer-right .link-icon {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
}
