/* --- Style Podstawowe i Reset --- */

body {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #374151;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.body-gradient {
    background: linear-gradient(to bottom, #fdf2f8, #eff6ff, #f0fdf4);
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* --- Główny Nagłówek (Header) --- */

.main-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-logo {
    max-height: 70px;
    width: auto;
    justify-self: center;
}

.header-menu-btn {
    justify-self: end;
    color: #ec4899;
    font-size: 1.8rem;
    margin-right: 1rem;
}

/* --- Wysuwane Menu Boczne --- */

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 16rem;
    background-color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
    z-index: 100;
    padding: 1.5rem;
}

.side-menu.is-open {
    transform: translateX(0);
}

.menu-close-btn {
    color: #ec4899;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-link {
    color: #374151;
    transition: color 300ms;
    font-size: 1.125rem;
}

.menu-link:hover {
    color: #ec4899;
}

/* --- Ogólne Style Sekcji --- */

.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.section-title i {
    margin-right: 0.5rem;
}

.section-title .icon-pink {
    color: #f472b6;
}

.section-title .icon-blue {
    color: #60a5fa;
}

.bg-blue-light {
    background-color: #eff6ff;
}

.bg-green-light {
    background-color: #f4eeec;
}

.bg-pink-light {
    background-color: #f4eeec;
}

/* --- Sekcja Hero (Główna Treść) --- */

.content-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.0rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* --- Style Kart (Sekcja "O mnie") --- */

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2-cols {
    grid-template-columns: 1fr;
}

.card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: box-shadow 300ms, transform 300ms;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card-pink {
    background: linear-gradient(to bottom right, #fff, #fdf2f8);
}

.card-green {
    background: linear-gradient(to bottom right, #fff, #f0fdf4);
}

.card-blue {
    background: linear-gradient(to bottom right, #fff, #eff6ff);
}

.card-title-pink {
    color: #f472b6;
}

.card-title-green {
    color: #4ade80;
}

.card-title-blue {
    color: #60a5fa;
}

.card-text {
    color: #4b5563;
}


/* --- Style Kart (Sekcja "Cennik") --- */

.pricing-section-grid {
    display: flex;
    justify-content: center;
}

.price-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: box-shadow 300ms, transform 300ms;
    width: 100%;       /* Nowa linijka */
    max-width: 500px;  /* Nowa linijka - zastępuje starą szerokość */
}
.price-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.price-card-blue {
    background-color: white;
}

.price-card-title-blue {
    color: #60a5fa;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.price-card-text {
    color: #4b5563;
}

/* --- Sekcja "Inne Usługi" --- */

.info-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.info-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: box-shadow 300ms, transform 300ms;
}

.info-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.info-card-style {
    background: linear-gradient(to bottom right, #fff, #eff6ff);
}

.info-title-style1 {
    color: #60a5fa;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-title-style2 {
    color: #ec4899;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-title-style3 {
    color: #4ade80;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card-text {
    color: #4b5563;
}

/* --- Sekcja Kontakt --- */

.text-center {
    text-align: center;
}

.contact-text {
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}


.booksy-link {
  font-size: 1.25rem; /* Możesz dostosować rozmiar czcionki */
  font-weight: 600;
  text-decoration: none;
  
  /* Poniższe 4 linie tworzą efekt gradientu na tekście */
  background: linear-gradient(to right, #ec4899, #f9a8d4);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.contact-details {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    margin-bottom: 2.5rem; /* Zwiększony odstęp na dole */
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-item i {
    width: 30px;
    text-align: center;
    margin-right: 0.5rem;
}


.appointment-section {
    margin-top: 2rem;
}

.appointment-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.appointment-widgets {
    display: flex;
    justify-content: center;
    align-items: center;
}



/* --- Stopka (Footer) --- */

.footer {
    background-color: #1f2937;
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
}

/* --- Przyciski (Buttons) --- */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: background-color 300ms;
    text-align: center;
    color: #fff;
}

.btn-primary {
    background-color: #f9a8d4;
}

.btn-primary:hover {
    background-color: #f472b6;
}

/* --- Media Queries (Responsywność) --- */

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Media Queries (dla sekcji "Inne Usługi") --- */

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2-cols .card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 70%;
        text-align: justify;
    }
}