/* ====================================
   MASKOTKI WEBSITE - TURQUOISE THEME
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #06B6D4;
    --primary-dark: #0891B2;
    --primary-light: #67E8F9;
    --accent: #F472B6;
    --bg: #F0FDFA;
    --card: #FFFFFF;
    --text: #0F172A;
    --text-light: #64748B;
    --border: #E0F2FE;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(135deg, #ECFEFF 0%, #E0F2FE 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    position: relative;
    height: 70vh;  
    min-height: 350px;  
    max-height: 450px; 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;  /* Jeszcze wyżej - twarz na środku */
    opacity: 1.0;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeInUp 1.2s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* ====================================
   NAVIGATION
   ==================================== */

nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-container a {
    color: var(--text);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-container a:hover,
.nav-container a.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ====================================
   CONTAINER
   ==================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2em;
    margin-bottom: 3rem;
}

/* ====================================
   CARDS
   ==================================== */

.card {
    background: var(--card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
}

/* ====================================
   GALLERY GRID
   ==================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* Dokładnie 3 kolumny */
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 350px;  /* Stała wysokość dla wszystkich */
    object-fit: cover;  /* Przycina żeby pasowało */
    object-position: center;  /* Wyśrodkowane */
    display: block;
}

.gallery-item-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;  /* Wyrównuje wysokość kart */
}

.gallery-item-info h3 {
    color: var(--primary);
    font-size: 1.3em;
    margin-bottom: 0.5rem;
}

.gallery-item-info p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* ====================================
   CENNIK
   ==================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.25);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-icon {
    font-size: 3em;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 1.8em;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text);
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* ====================================
   FORM
   ==================================== */

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
}

/* ====================================
   FOOTER
   ==================================== */

footer {
    background: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

footer p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* ====================================
   LIGHTBOX
   ==================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3em;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--primary-light);
}

/* ====================================
   ANIMATIONS
   ==================================== */

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

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 2em;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 kolumny */
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 300px;  /* Trochę mniejsze na tablecie */
    }

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

    .nav-container {
        flex-direction: column;
        gap: 5px;
    }

    .nav-container a {
        width: 100%;
        text-align: center;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;  /* 1 kolumna */
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 280px;  /* Jeszcze mniejsze na telefonie */
    }
}
/* ====================================
   UTILITY CLASSES
   ==================================== */

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}
