* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; line-height: 1.6; color: #333; scroll-behavior: smooth; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

.container { max-width: 1100px; margin: auto; padding: 60px 20px; text-align: center; }

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://www.skicc.hu/index_image.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero span { color: #ff7e5f; }
.btn { 
    display: inline-block; background: #ff7e5f; color: white; padding: 15px 30px; 
    text-decoration: none; border-radius: 30px; font-weight: bold; transition: 0.3s;
}
.btn:hover { background: #e06a4f; transform: scale(1.05); }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.card { padding: 30px; border: 1px solid #eee; border-radius: 10px; transition: 0.3s; }
.card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Miért válasszon minket - 2x3 Grid elrendezés */
.why-us {
    background: #f9f9f9; /* Világos háttér, hogy elkülönüljön a sötét lábléctől */
    padding: 80px 0;
}

.why-us .section-title {
    margin-bottom: 50px;
    color: #1a2a6c;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 oszlop alapértelmezetten */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #1a2a6c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

footer {
    background: #1a1a1a; /* Mélyfekete/sötétszürke háttér */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

footer h2 {
    margin-bottom: 20px;
    color: white;
}

.contact-info {
    margin-bottom: 20px;
}

/* Az email link stílusa */
.email-link {
    display: inline-block;
    color: #ff7e5f; /* A korábbi narancs színünk */
    font-size: 1.5rem; /* Kicsit nagyobb méret, hogy hangsúlyos legyen */
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease; /* Finom átmenet az animációhoz */
}

/* Hover effektus: amikor az egeret fölé viszed */
.email-link:hover {
    color: white; /* Fehérre vált */
    transform: scale(1.05); /* Kicsit megnő */
    text-shadow: 0 0 10px rgba(255, 126, 95, 0.5); /* Enyhe ragyogás */
}

.phone {
    font-size: 1.1rem;
    opacity: 0.8; /* A telefon picit halványabb, hogy az email maradjon a fő CTA */
}

/* Mobilnézet: egy oszlopba rendeződés */
@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr); /* Táblagépen 2 oszlop */
    }
}

@media (max-width: 600px) {
    .why-us-grid {
        grid-template-columns: 1fr; /* Mobilon 1 oszlop */
    }
}

footer { background: #333; color: white; padding: 40px; text-align: center; }