/*köszöntő kép*/
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-circle {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    padding: 40px;
    box-shadow: 0 15px 15px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.hero-logo-circle img {
    height: 140px;
    width: 140px;
    display: block;
}

.hero-logo-circle:hover {
    transform: scale(1.05);
}

/*Termékek*/
.intro-products {
    padding: 60px 20px;
    background-color: #fefefe;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.text-content {
    max-width: 500px;
}

h2 {
    font-family: 'PlayfairDisplay', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-label {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #777;
}

/*termék gomb*/
.catalogue-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background-color: #a67852;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'PlayfairDisplay', serif;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.catalogue-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.3s ease;
    z-index: -1;
}

.catalogue-btn:hover::after {
    left: 100%;
}

.catalogue-btn:hover {
    background-color: #8a5e40;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/*termék gomb vége*/

/* Kiemelt háttérképes szekció */
.highlight-section {
    background-image: url('/img/cake.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
    text-align: center;
    color: #fff;
}

.highlight-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.highlight-section h2 {
    font-size: 36px;
    font-family: 'PlayfairDisplay', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.highlight-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f7f7f7;
}

.highlight-btn {
    background-color: #a67852;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'PlayfairDisplay', serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.highlight-btn:hover {
    background-color: #8a5e40;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
/* Kiemelt háttérképes szekció vége */

.image-content {
    position: relative;
    max-width: 400px;
}

.image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.product-card {
    position: relative;
    width: 180px;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    justify-items: center;
}


.icon-star {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #a67852;
    font-size: 16px;
    background: white;
    padding: 4px 6px;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.products-grid img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Rólunk (team) szekció */
.about-team {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.about-team .team-title {
    font-family: 'PlayfairDisplay', serif;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.about-team .team-subtitle {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.team-member {
    max-width: 250px;
}

.team-member img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.03);
}

.team-member h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    font-family: 'PlayfairDisplay', serif;
}

.team-member .role {
    font-size: 14px;
    color: #a67852;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/*features*/
.features {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item img {
    height: 60px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.feature-item img:hover {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
/*features vége*/

/* cost calculator */
.price-calculator {
    background: url('/img/cake.jpg') no-repeat center/cover;
    padding: 100px 20px;
}

.price-calculator .container {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
    color: #000;
}

.calculator-title {
    font-family: 'PlayfairDisplay', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.calc-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.calc-group {
    flex: 1 1 220px;
    max-width: 300px;
}

.styled-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #a67852;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 5px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,0 140,0 70,90' fill='%23a67852'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.styled-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(166, 120, 82, 0.2);
}

.calc-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.calc-group input[type=range] {
    width: 100%;
    accent-color: #a67852; /* barna csúszka */
    height: 6px;
}

.calc-group select {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.calc-result {
    margin-top: 30px;
    font-size: 20px;
    text-align: center;
}

.calc-result span {
    font-size: 28px;
    font-weight: bold;
    color: #a67852;
}

.calc-result button {
    margin-top: 20px;
    background-color: #a67852;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'PlayfairDisplay', serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.calc-result button:hover {
    background-color: #8a5f3d;
}
/* cost calculator vége */

/* Reszponzivitás */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .intro-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .text-content, .image-content {
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    .product-card {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        width: 100%;
    }
}

.home-intro {
    background-color: #fefefe;
    padding: 60px 20px;
    text-align: center;
}

.home-intro h2 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.home-intro p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.home-intro .btn {
    background-color: #a67852;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'PlayfairDisplay', serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.home-intro .btn:hover {
    background-color: #8a5e40;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.featured-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

.banner-overlay h2 {
    color: #fff;
    font-family: 'PlayfairDisplay', serif;
    font-size: 32px;
}
