:root {
    --dark: #000;
    --dark-soft: #1d1d1d;
    --accent: #c58b2b;
    --light: #f5f5f5;
    --gray: #3a3a3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--dark);
    line-height: 1.4;
}

/* ===== Container ===== */

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ===== HERO (jóval alacsonyabb) ===== */

.hero {
    position: relative;
    height: 30vh;        /* jelentősen kisebb */
    min-height: 220px;
    background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?q=80&w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
}

.hero p {
    margin-top: 10px;
    font-size: 1rem;
    color: #dddddd;
}

/* ===== Section ===== */

.section {
    padding: 20px 0 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* ===== Pricing Grid ===== */

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== Cards ===== */

.card {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Alap árnyék */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-5px);

    /* Erősebb árnyék hoverre */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--accent);
}

/* ===== Featured Card ===== */

.featured {
    background: var(--dark-soft);
    color: #ffffff;
}

.featured .price {
    color: var(--accent);
}

/* ===== Telefon blokk MINDHÁROM kártyában ===== */

/* ===== Booking kiemelt blokk ===== */

.booking {
    margin-top: 25px;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #c58b2b, #a8741f);
    color: white;
}

.booking p {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.booking a {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.2s ease;
}

.booking a:hover {
    opacity: 0.85;
}


/* ===== Extra ===== */

.extra {
    margin-top: 30px;
    padding: 25px 30px;
    text-align: center;
    color: var(--gray);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: #f3f3f3;
    border-radius: 10px;
}

.extra h3 {
    margin-bottom: 15px;
    color: var(--dark);
}


/* ===== Footer ===== */

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

    .hero {
        height: 25vh;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .section {
        padding: 20px 0;
    }
	.pricing {
        grid-template-columns: 1fr;
    }

    .pricing .card {
        grid-column: auto;
        max-width: 100%;
    }
}
/* ===== Tablet nézet: ha 2 oszlop van ===== */
@media (min-width: 768px) and (max-width: 1024px) {

    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing .card:nth-child(3) {
        grid-column: 1 / -1;      /* foglalja el az egész sort */
        max-width: 500px;         /* ne legyen túl széles */
        margin-left: auto;
        margin-right: auto;       /* középre igazítás */
    }
}

