/* ===== ALAP ===== */

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

body{

    font-family:'Poppins', sans-serif;

    background:#edf1f2;

    color:#333;

    overflow-x:hidden;
}

/* ===== HÁTTÉR ===== */

.hero{

    min-height:100vh;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #eef2f2 0%,
        #eef2f2 45%,
        #dfe7ea 100%
    );
}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        110deg,
        transparent 0%,
        transparent 40%,
        rgba(180,195,200,0.18) 40%,
        rgba(180,195,200,0.18) 45%,
        transparent 45%
    );

    pointer-events:none;
}

/* ===== TARTALOM ===== */

.container{

    width:min(1400px, 95%);

    margin:auto;

    padding:40px 20px 60px;

    position:relative;

    z-index:2;
}

/* ===== FEJLÉC ===== */

header{

    text-align:center;

    margin-bottom:50px;
}

header h1{

    width:fit-content;

    max-width:90vw;

    margin:auto;

    padding:
    14px 24px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.45);

    backdrop-filter:blur(8px);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.08);

    font-family:'Shrikhand', cursive;

    font-size:clamp(2rem, 6vw, 6rem);

    line-height:1.1;

    text-align:center;

    color:#e4cccc;

    -webkit-text-stroke:
    2px rgba(0,0,0,0.18);

    letter-spacing:1px;

    overflow-wrap:break-word;
}

/* ===== OSZLOPOK ===== */

.columns{

    display:grid;

    grid-template-columns:
    minmax(0,1fr)
    minmax(0,1fr);

    gap:40px;

    align-items:start;
}

/* ===== KÁRTYÁK ===== */

.card{

    background:rgba(255,255,255,0.55);

    backdrop-filter:blur(8px);

    border-radius:40px;

    padding:40px 30px;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.08);

    min-width:0;

    overflow:hidden;
}
/* ===== SZÖVEGEK ===== */

.quote-block{

    text-align:center;

    margin-bottom:30px;
}

.quote-block h2{

    font-family:'Alex Brush', cursive;

    font-size:clamp(2.4rem, 4vw, 4.2rem);

    line-height:1.5;

    margin-bottom:10px;
}

.quote-block h3{

    font-family:'Alex Brush', cursive;

    font-size:clamp(2rem, 3.2vw, 3.6rem);

    color:#b68d95;

    line-height:1.5;
}

/* ===== KÉPEK ===== */

.main-image{

    display:flex;

    justify-content:center;

    margin:30px 0;
}

.main-image img{

    width:min(340px, 90%);

    aspect-ratio:1 / 1;

    object-fit:cover;

    border-radius:28px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.15);
}

/* ===== LEÍRÁS ===== */

.description{

    text-align:center;

    line-height:1.8;

    font-size:1.05rem;

    margin-bottom:35px;
}

/* ===== TELEFON BLOKK ===== */

.phones{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    flex-wrap:nowrap;

    margin-bottom:35px;

    position:relative;

    padding:
    20px
    25px;
}

/* ===== TELEFON ===== */

.phone{

    width:min(220px, 38vw);

    position:relative;
}

/* ===== KERET ===== */

.phone-frame{

    background:#111;

    padding:6px;

    border-radius:34px;

    position:relative;

    box-shadow:
    0 18px 35px rgba(0,0,0,0.22);
}

/* ===== TELEFONPÁROK ===== */

.pair{

    margin-bottom:30px;
}

/* ===== JOBB OLDALI TELEFONOK ===== */

.pair .phone{

    width:min(220px, 38vw);
}

/* BAL */

.pair .phone:nth-child(1){

    animation:
    floatLeft 5s ease-in-out infinite;

    z-index:1;
}

/* JOBB */

.pair .phone:nth-child(2){

    animation:
    floatRight 5s ease-in-out infinite;

    margin-left:-40px;

    z-index:2;
}
/* ===== KERET SZÍNEK ===== */

.phone.gold .phone-frame{
    background:#c8a96b;
}

.phone.blue .phone-frame{
    background:#6e8fa8;
}

.phone.pink .phone-frame{
    background:#c28e9b;
}

.phone.black .phone-frame{
    background:#111;
}

.phone.dark .phone-frame{
    background:#555;
}

/* IVORY */

.phone.ivory .phone-frame{

    background:#efe7dc;
}

/* SAGE */

.phone.sage .phone-frame{

    background:#b7c4b2;
}

/* ===== NAGY TELEFONOK ===== */

.phones .phone:nth-child(1){

    animation:
    floatLeft 5s ease-in-out infinite;

    z-index:1;
}

.phones .phone:nth-child(2){

    animation:
    floatRight 5s ease-in-out infinite;

    margin-left:-40px;

    z-index:2;
}

/* ===== KIS TELEFONOK ===== */

.small-phones .phone:nth-child(1){

    animation:
    floatLeft 5s ease-in-out infinite;

    z-index:1;
}

.small-phones .phone:nth-child(2){

    animation:
    floatRight 5s ease-in-out infinite;

    margin-left:-20px;

    z-index:2;
}

.small-phones .phone:nth-child(3){

    animation:
    floatLeft 5s ease-in-out infinite;

    margin-left:-20px;

    z-index:3;
}

.small-phones .phone:nth-child(4){

    animation:
    floatRight 5s ease-in-out infinite;

    margin-left:-20px;

    z-index:4;
}

/* ===== NOTCH ===== */

.notch{

    width:35%;

    height:12px;

    background:#222;

    border-radius:20px;

    margin:0 auto 8px auto;
}

/* ===== SCREENSHOT ===== */

.screen{

    width:100%;

    display:block;

    border-radius:26px;
}

/* ===== IKONOK ===== */

.icon-row{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    text-align:center;
}

.icon-row div{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;
}

.icon-row i{

    font-size:2rem;

    color:#b68d95;
}

.icon-row span{

    font-weight:600;

    letter-spacing:1px;
}

/* ===== ALSÓ RÉSZ ===== */

.bottom-area{

    margin-top:60px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:30px;
}

/* ===== LOGÓ ===== */

.logo img{

    width:min(320px, 70vw);

    height:auto;

    display:block;

    filter:
    drop-shadow(
        0 8px 15px rgba(0,0,0,0.15)
    );
}

/* ===== GOMB ===== */

.order-button{

    text-decoration:none;

    background:#c28e9b;

    color:white;

    padding:18px 50px;

    border-radius:60px;

    font-size:1.2rem;

    font-weight:700;

    transition:0.3s;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.18);
}

.order-button:hover{

    transform:
    translateY(-4px)
    scale(1.03);

    background:#ad7885;
}

/* ===== ANIMÁCIÓK ===== */

@keyframes floatLeft{

    0%{
        transform:
        rotate(-5deg)
        translateY(0px);
    }

    50%{
        transform:
        rotate(-5deg)
        translateY(-8px);
    }

    100%{
        transform:
        rotate(-5deg)
        translateY(0px);
    }
}

@keyframes floatRight{

    0%{
        transform:
        rotate(5deg)
        translateY(0px);
    }

    50%{
        transform:
        rotate(5deg)
        translateY(-8px);
    }

    100%{
        transform:
        rotate(5deg)
        translateY(0px);
    }
}

/* ===== TABLET ===== */

@media (max-width:1100px){

    .columns{

        grid-template-columns:1fr;
    }

    .small-phones{

        flex-wrap:wrap;
    }
}

/* ===== MOBIL ===== */

@media (max-width:700px){

    .container{

        padding:25px 12px 50px;
    }

    .card{

        padding:25px 18px;

        border-radius:28px;
    }

    .phones{

        transform:scale(0.9);

        transform-origin:center;
    }

    .phone{

        width:min(170px, 42vw);
    }

    .small-phones .phone{

        width:min(95px, 22vw);
    }

    .icon-row{

        gap:20px;
    }

    .order-button{

        width:100%;

        text-align:center;
    }

    header h1{

        font-size:clamp(1.6rem, 8vw, 3rem);

        padding:
        10px 18px;
    }
}

/* ===== FEKVŐ TABLET ===== */

@media
(orientation: landscape)
and
(max-width:1200px){

    .columns{

        grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);
    }
}
