:root {
    /* Zaktualizowana paleta Glamour pod Twoje logo */
    --color-bg: #FAFAFA; /* Ciepła biel tła */
    --color-text: #2C3E50; /* Głęboki granat/grafit dla tekstów */
    --color-primary: #C49A5A; /* Złoty pobrany z logo */
    --color-primary-dark: #A67E42; /* Ciemniejsze złoto na hover */
    --color-white: #FFFFFF;
    
    /* Typografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Ustawienia */
    --transition: 0.3s ease;
}

/* Reset i podstawy (Best Practices) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typografia */
h1, h2, h3, .logo-img {
    font-family: var(--font-heading);
}

h2 {
    color: var(--color-text);
}

/* Header & Nawigacja (Flexbox + Integracja Logo) */
.main-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px; /* Nieco wyższy dla eleganckiego logo */
    padding: 10px 20px;
}

.logo-img {
    max-height: 70px; /* Ograniczenie wysokości logo w menu */
    width: auto;
    display: block;
    transition: transform var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.03); /* Delikatny efekt po najechaniu */
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.nav-list a:hover, .nav-list a.active {
    color: var(--color-primary);
}

/* Hero Section - Zintegrowana ze zdjęciem budynku (image_1.png) */
.hero {
    position: relative;
    height: 80vh; /* Wysoka sekcja powitalna */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Tu podpinamy Twoje zdjęcie budynku */
    background-image: url('hero-zewnatrz.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Paralaksa - zdjęcie stoi, strona się przewija */
    color: var(--color-white);
}

/* Nakładka zapewniająca czytelność białego tekstu na jasnym budynku/niebie */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 80, 0.55); /* Granatowy overlay z 55% krycia */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    color: var(--color-white);
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Przyciski Glamour */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(196, 154, 90, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 154, 90, 0.4);
}

/* Sekcja O nas (CSS Grid) */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 8rem 20px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.link-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color var(--transition);
}

.link-more:hover {
    color: var(--color-primary-dark);
}

.about-image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Stopka - Glamour zintegrowana z FB/Google */
.main-footer {
    background-color: var(--color-text); /* Ciemny granat tła */
    color: var(--color-white);
    padding: 5rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    max-height: 120px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Zmiana złotego logo na białe w stopce */
}

.footer-info p {
    max-width: 300px;
    opacity: 0.8;
}

.footer-social h3 {
    color: var(--color-primary); /* Złote nagłówki w stopce */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 0.8rem;
}

.social-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color var(--transition);
}

.social-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Responsywność (Podejście Mobile-First dla kluczowych elementów) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo-img {
        max-height: 55px;
        margin-bottom: 1rem;
    }
    
    .nav-list {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list a {
        font-size: 0.9rem;
    }

    .hero {
        background-attachment: scroll; /* Wyłączenie paralaksy na mobile dla wydajności */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-preview {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 20px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info p {
        margin: 0 auto;
    }
}

/* ==========================================================================
   STYLE DLA PODSTRONY KONTAKT
   ========================================================================== */

.page-header {
    text-align: center;
    padding: 5rem 20px 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Układ dwukolumnowy dla Kontaktu (Grid) */
.contact-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding-bottom: 8rem;
    align-items: start;
}

.contact-form-wrapper h2, .contact-info-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Złota linia dekoracyjna pod nagłówkami sekcji */
.contact-form-wrapper h2::after, .contact-info-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-primary);
}

/* Formularz */
.contact-form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

/* Informacje kontaktowe i mapa */
.info-blocks {
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.info-block p {
    color: #555;
    font-size: 1.05rem;
}

.contact-link {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--color-primary);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-container iframe {
    display: block;
}

/* Responsywność dla mobile */
@media (max-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   STYLE DLA PODSTRONY NOCLEGI
   ========================================================================== */

/* Sekcje z dużymi zdjęciami pokoi */
.rooms-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 5rem;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.room-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* Odwrócenie kolejności dla urozmaicenia układu */
}

.room-card.reverse > * {
    direction: ltr; /* Przywrócenie normalnego kierunku czytania tekstu */
}

.room-image img {
    width: 100%;
    height: auto; /* Przeglądarka idealnie dopasuje wysokość do Twojego oryginalnego zdjęcia */
    display: block;
    border-radius: 2px;
    border: 3px solid #F0F0F0;
}

.room-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.room-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Wykaz wszystkich pokoi (Grid) */
.rooms-list-section {
    padding: 4rem 20px 8rem;
    border-top: 1px solid #EAEAEA;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title-centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rooms-column h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.rooms-column h3:first-child {
    margin-top: 0;
}

.rooms-list {
    list-style: none;
}

.rooms-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

/* Złota kropka jako wypunktowanie w liście */
.rooms-list li::before {
    content: '•';
    color: var(--color-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.rooms-list strong {
    color: var(--color-text);
}

/* Responsywność dla mobile */
@media (max-width: 992px) {
    .room-card, .room-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   STYLE DLA PODSTRONY OFERTA
   ========================================================================== */

.offer-details {
    padding-bottom: 5rem;
}

.menu-intro {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.menu-box {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border-top: 3px solid var(--color-primary);
}

.menu-box h3 {
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.menu-box ul {
    list-style: none;
}

.menu-box ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Ozdobny checkmark (ptaszek) zamiast kropki w liście menu */
.menu-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Atrakcje dodatkowe na lekko szarym tle */
.bg-light {
    background-color: #F8F9FA;
    padding: 6rem 0;
    margin-bottom: 5rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.attraction-card {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    text-align: center;
    transition: transform var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card h3 {
    color: var(--color-primary-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.attraction-card p {
    color: #666;
    font-size: 1rem;
}

/* Call to Action - Zachęta do kontaktu */
.cta-section {
    margin-bottom: 6rem;
}

.cta-box {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 15px;
    pointer-events: none;
}

.cta-box h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* Responsywność dla mobile */
@media (max-width: 992px) {
    .menu-grid, .attractions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-box {
        padding: 3rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
}
/* ==========================================================================
   STYLE DLA PODSTRONY O NAS
   ========================================================================== */

.about-story {
    padding-bottom: 4rem;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: var(--font-heading);
}

.story-content p:not(.lead-text) {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* Galeria Ogrodów */
.gardens-section {
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #fff;
}

.gallery-item img {
    width: 100%;
    height: auto; /* Pokazuje CAŁE zdjęcie od góry do dołu, bez ucinania nieba */
    display: block;
    transition: transform 0.5s ease;
}

/* Efekt przybliżenia (zoom) po najechaniu myszką na zdjęcie z ogrodu */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Responsywność dla mobile */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
}

/* ==========================================================================
   NOWE STYLE DLA STRONY GŁÓWNEJ (Event Planner, Kroki, Rodzaje Imprez)
   ========================================================================== */

/* Rodzaje Imprez */
.events-types {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

/* Nowe style dla obrazków w rodzajach imprez */
.event-card-simple h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    margin-bottom: 1.5rem;
    height: 4rem; /* SZTYWNA WYSOKOŚĆ - ani milimetra mniej, ani więcej! */
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.event-img {
    width: 100%;
    height: 220px; /* Stała wysokość, żeby wszystkie zdjęcia były równe */
    object-fit: cover; /* Gwarantuje, że zdjęcie wypełni ramkę bez zniekształceń */
    border-radius: 4px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Delikatny cień dla głębi */
    transition: transform var(--transition);
}

/* Delikatny efekt powiększenia zdjęcia przy najechaniu myszką */
.event-card-simple:hover .event-img {
    transform: scale(1.03);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.event-card-simple {
    background-color: #fff;
    border: 1px solid #EAEAEA;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.event-card-simple:hover {
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transform: translateY(-5px);
}

.event-card-simple h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

/* Event Planner */
.features-section {
    padding-top: 6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-box {
    text-align: center; /* Wymusza wyśrodkowanie wszystkich elementów w środku */
}

.feature-box h4 {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
}

/* 3 Kroki Planowania */
.planning-steps {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.step-box {
    text-align: left;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.step-box p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsywność dla mobile (Strona Główna) */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid, .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .step-box {
        text-align: center;
        border-bottom: 1px solid #EEE;
        padding-bottom: 2rem;
    }
    
    .step-box:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   STYLE DLA PREZENTACJI TRZECH SAL (O NAS)
   ========================================================================== */

.sales-presentation {
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.sale-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Odwrócenie kolejności kolumn (efekt szachownicy) */
.sale-row.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.sale-row.reverse > * {
    direction: ltr;
}

.sale-info h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.sale-tag {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.sale-info p:not(.sale-tag) {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Tymczasowa elegancka makieta na zdjęcie sali w klimacie Glamour */
.sale-image-placeholder {
    width: 100%;
    height: 380px;
    background-color: #F4F1EA;
    border: 1px dashed var(--color-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Responsywność dla ekranów mobilnych */
@media (max-width: 992px) {
    .sale-row, .sale-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .sale-image-placeholder {
        height: 250px;
    }
    
    .sale-info h2 {
        font-size: 2rem;
    }
}