/* ===================================
   HOME.CSS - Style dla strony głównej
   La mia Fabbrica - Restauracja
   =================================== */

/* ===================================
   HERO SECTION
   =================================== */
.hero-section-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.85) 25%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.4) 75%,
        rgba(0,0,0,0.15) 90%,
        transparent 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}

.hero-text {
    max-width: 680px;
    padding: 0 100px;
    color: #fff;
}

.hero-brand {
    font-size: clamp(28px, 4.5vw, 52px);
    font-family: var(--font-accent);
    font-weight: 400;
    letter-spacing: -0.7px;
    margin-bottom: 20px;
    line-height: 1.2em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-tagline {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease 0.4s both;
    color: #fff;
}

.hero-description {
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 400;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-direction: row;
    animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SEKCJA O NAS
   =================================== */
.section-about-dark {
    background: var(--color-bg-white);
    color: var(--color-text);
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.about-subtitle {
    font-size: 18px;
    font-family: var(--font-heading);
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2em;
}

.about-title {
    font-size: clamp(18px, 2vw, 26px);
    font-family: var(--font-accent);
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
    color: var(--color-text);
}

.about-new-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-photo-container {
    position: relative;
    z-index: 1;
}

.about-main-photo {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.about-main-photo:hover img {
    transform: scale(1.05);
}

/* Overlay photos */
.overlay-photo {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 4px solid #ffffff;
}

.overlay-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.overlay-photo:hover img {
    transform: scale(1.1);
}

.overlay-photo.top-left {
    top: -40px;
    left: -60px;
    animation: float-subtle 6s ease-in-out infinite;
}

.overlay-photo.bottom-right {
    bottom: -40px;
    right: -60px;
    animation: float-subtle 6s ease-in-out infinite 3s;
}

@keyframes float-subtle {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

/* Content box */
.about-content-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-label {
    font-size: 18px;
    font-family: var(--font-heading);
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.2em;
}

.about-content-box h3 {
    font-size: clamp(26px, 3vw, 38px);
    font-family: var(--font-accent);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2em;
    letter-spacing: -0.7px;
    color: var(--color-text);
}

.about-content-box p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* ===================================
   SEKCJA MENU - ZIELONE TŁO
   =================================== */
.section-menu-green {
    background: linear-gradient(135deg, var(--color-primary) 0%, #188548 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-menu-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 550px;
    height: 550px;
    background-image: url('../assets/img/skladniki.png');
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    transform: rotate(180deg);
}

.section-menu-green::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 550px;
    height: 550px;
    background-image: url('../assets/img/skladniki.png');
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.section-menu-green .section-content {
    position: relative;
    z-index: 2;
}

.menu-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.menu-subtitle {
    font-size: 18px;
    font-family: var(--font-heading);
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2em;
    opacity: 0.9;
}

.menu-main-title {
    font-size: clamp(16px, 1.8vw, 22px);
    font-family: var(--font-accent);
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
    color: #fff;
}

.menu-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu cards */
.menu-card-special {
    background: transparent;
    text-align: center;
    transition: transform 0.4s ease;
}

.menu-card-special:hover {
    transform: translateY(-10px);
}

.menu-card-image-round {
    width: 360px;
    height: 360px;
    margin: 0 auto 35px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 8px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.menu-card-special:hover .menu-card-image-round {
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.menu-card-image-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.menu-card-special:hover .menu-card-image-round img {
    transform: scale(1.15);
}

.menu-card-content-special {
    padding: 0 20px;
}

.menu-card-content-special h3 {
    font-size: clamp(26px, 2.8vw, 36px);
    font-family: var(--font-accent);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
}

.menu-card-content-special p {
    font-size: 1.05em;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===================================
   SEKCJA SHOW KULINARNE
   =================================== */
.show-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.show-video-container {
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.show-subtitle {
    font-size: 18px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    line-height: 1.2em;
}

.show-text h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-family: var(--font-accent);
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
}

.show-text p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===================================
   SEKCJA REZERWACJA - PARALLAX
   =================================== */
.reservation-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.parallax-section {
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.reservation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reservation-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 40px;
}

.reservation-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-family: var(--font-accent);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
    color: #fff;
}

.reservation-content p {
    font-size: clamp(16px, 1.5vw, 20px);
    margin-bottom: 35px;
    line-height: 1.6;
}

.reservation-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   MODAL REZERWACJI
   =================================== */

/* ---- MODAL OVERLAY ---- */
.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.reservation-modal.active {
    opacity: 1;
    visibility: visible;
}

.reservation-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ---- MODAL CONTAINER ---- */
.reservation-modal-container {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.reservation-modal.active .reservation-modal-container {
    transform: translateY(0) scale(1);
}

.reservation-modal-container::-webkit-scrollbar { width: 6px; }
.reservation-modal-container::-webkit-scrollbar-track { background: transparent; }
.reservation-modal-container::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* ---- CLOSE BUTTON ---- */
.reservation-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-modal-close:hover {
    color: #333;
    background: #f0f0f0;
}

/* ---- HEADER ---- */
.reservation-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.reservation-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 8px;
}

.reservation-modal-header p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ---- FORM ---- */
.reservation-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.reservation-form .form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.reservation-form .form-row .form-group {
    flex: 1;
}

.reservation-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reservation-form .form-group.full-width {
    width: 100%;
}

.reservation-form .form-group label {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.3px;
}

.reservation-form .form-group .required {
    color: #e74c3c;
}

.reservation-form .form-group input,
.reservation-form .form-group select,
.reservation-form .form-group textarea {
    font-family: var(--font-primary);
    font-size: 14px;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    color: var(--color-text);
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.reservation-form .form-group input:focus,
.reservation-form .form-group select:focus,
.reservation-form .form-group textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31, 160, 90, 0.1);
}

.reservation-form .form-group input.error,
.reservation-form .form-group select.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.reservation-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.reservation-form .form-error {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #e74c3c;
    min-height: 16px;
    display: block;
}

/* ---- CHECKBOX ---- */
.reservation-form .form-consent {
    margin-top: 4px;
}

.reservation-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
    line-height: 1.5;
}

.reservation-form .checkbox-label input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

/* ---- SUBMIT BUTTON ---- */
.reservation-form .btn-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reservation-form .btn-submit:hover {
    background: #178a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(31, 160, 90, 0.3);
}

.reservation-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.reservation-form .btn-loader svg {
    animation: spin-loader 1s linear infinite;
}

@keyframes spin-loader {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---- SUCCESS MESSAGE ---- */
.reservation-success {
    text-align: center;
    padding: 20px 0;
}

.reservation-success .success-icon {
    margin-bottom: 20px;
}

.reservation-success .success-icon svg circle {
    stroke-dasharray: 190;
    stroke-dashoffset: 190;
    animation: drawCircle 0.6s ease-out 0.2s forwards;
}

.reservation-success .success-icon svg path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease-out 0.7s forwards;
}

@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.reservation-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px;
}

.reservation-success p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0 0 24px;
    line-height: 1.6;
}

.reservation-success .btn {
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

/* ---- BLOCKED DATE BANNER (stały, żółty) ---- */
.blocked-date-banner {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #6b5900;
    background: #fff8db;
    border: 1.5px solid #f0d760;
    border-radius: 8px;
    padding: 10px 16px;
    margin-top: 16px;
    line-height: 1.5;
    text-align: center;
}

.blocked-date-banner strong {
    font-weight: 700;
    color: #d63050;
}

.blocked-date-banner a {
    color: #d63050;
    font-weight: 700;
    text-decoration: none;
}

.blocked-date-banner a:hover {
    text-decoration: underline;
}

/* ---- BLOCKED DATE NOTICE (po wybraniu daty) ---- */
.blocked-date-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #fff0f3, #ffe0e6);
    border: 1.5px solid #e8879b;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.blocked-date-notice-icon {
    font-size: 28px;
    color: #d63050;
    line-height: 1;
    flex-shrink: 0;
}

.blocked-date-notice-text {
    font-family: var(--font-primary);
}

.blocked-date-notice-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #c0273f;
    margin-bottom: 6px;
}

.blocked-date-notice-text p {
    font-size: 13px;
    color: #6b2030;
    line-height: 1.5;
    margin: 0 0 10px;
}

.blocked-date-phone {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #d63050;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.blocked-date-phone:hover {
    background: #b82545;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
    .reservation-modal-container {
        width: 95%;
        padding: 28px 20px;
        border-radius: 12px;
        max-height: 95vh;
    }

    .reservation-form .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .reservation-modal-header h3 {
        font-size: 22px;
    }
}

/* ===================================
   SEKCJA OPINII - KARUZELA
   =================================== */
.reviews-header {
    text-align: center;
    margin-bottom: 80px;
}

.reviews-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-family: var(--font-accent);
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
}

.reviews-subtitle {
    font-size: 16px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

.reviews-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.review-slide {
    min-width: 33.333%;
    padding: 40px 30px;
    text-align: center;
    box-sizing: border-box;
}

.review-rating {
    color: #D4AF37;
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.review-quote {
    font-size: clamp(15px, 1.6vw, 18px);
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    min-height: 150px;
}

.review-name {
    font-size: 14px;
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Carousel buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E5E5E5;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #fff;
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Carousel dots */
.carousel-dots {
    text-align: center;
    margin-top: 40px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: #E5E5E5;
    margin: 0 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot:hover { background: #888; }

.dot.active {
    background: var(--color-primary);
    width: 12px;
    height: 12px;
}

/* ===================================
   SEKCJA GALERIA
   =================================== */
.gallery-section,
.section-gallery-grey {
    background-color: var(--color-bg-grey);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-family: var(--font-accent);
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
}

.gallery-subtitle {
    font-size: 16px;
    color: #888;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===================================
   SEKCJA KONTAKT
   =================================== */
.contact-section {
    padding: 0 !important;
    min-height: 600px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-map-fullheight {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.contact-map-fullheight iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    -webkit-filter: grayscale(100%) contrast(1.1);
}

.contact-info-panel {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-family: var(--font-accent);
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: -0.7px;
}

.contact-subtitle {
    font-size: 16px;
    color: #888;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 160, 90, 0.1);
    border-radius: var(--radius-full);
}

.contact-text h3 {
    font-size: 18px;
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-text a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color var(--transition-normal);
}

.contact-text a:hover {
    color: #158F4E;
}

.contact-details .btn {
    margin-top: 15px;
    align-self: flex-start;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-text { padding: 0 40px; }

    .about-new-grid,
    .menu-grid-two {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .show-grid {
        gap: 50px;
    }

    .about-photo-container { max-width: 600px; margin: 0 auto; }

    .overlay-photo { width: 200px; height: 200px; }
    .overlay-photo.top-left { top: -30px; left: -40px; }
    .overlay-photo.bottom-right { bottom: -30px; right: -40px; }

    .menu-card-image-round { width: 300px; height: 300px; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map-fullheight { min-height: 400px; }
}

@media (max-width: 768px) {
    .hero-section-modern { height: 100vh; min-height: 500px; }

    .hero-gradient {
        width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.6) 100%);
    }

    .hero-content {
        align-items: center;
        justify-content: center;
    }
    .hero-text {
        padding: 0 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-brand {
        font-size: clamp(36px, 10vw, 56px);
    }
    .hero-buttons { flex-direction: column; width: 100%; }

    .section { padding: 60px 0; }

    .about-main-photo { height: 400px; }
    .overlay-photo { width: 140px; height: 140px; }
    .overlay-photo.top-left { top: -20px; left: -20px; }
    .overlay-photo.bottom-right { bottom: -20px; right: -20px; }

    .menu-card-special .menu-card-image-round { width: 260px; height: 260px; }

    .show-grid {
        grid-template-columns: 1fr;
    }

    .review-slide { min-width: 100%; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .reservation-section { height: 450px; }

    .contact-info-panel { padding: 40px 20px; }
}

@media (max-width: 480px) {
    .hero-text { padding: 0 20px 40px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ===================================
   BLOG PREVIEW SECTION
   =================================== */
.blog-preview-section {
    padding: 80px 0;
    background: #fff;
}

.blog-preview-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-preview-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-preview-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.blog-preview-lead-text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-preview-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.blog-preview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.1);
}

.blog-preview-image .no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-preview-image .featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-preview-content {
    padding: 24px;
}

.blog-preview-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: #888;
}

.blog-preview-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.blog-preview-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-preview-title a:hover {
    color: var(--primary);
}

.blog-preview-lead {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.blog-read-more {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: letter-spacing 0.2s;
}

.blog-read-more:hover {
    letter-spacing: 0.5px;
}

.blog-preview-footer {
    text-align: center;
    margin-top: 50px;
}

/* Blog Preview - Responsive */
@media (max-width: 992px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-preview-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-preview-section {
        padding: 60px 0;
    }
    .blog-preview-header h2 {
        font-size: 2rem;
    }
    .blog-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .blog-preview-card:nth-child(3) {
        display: block;
    }
}
