/*
/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

/* =========================
   BODY
========================= */

body{
    font-family: Georgia, serif;

    background: linear-gradient(
        to right,
        #0d5eaf 0%,
        #1f6fbf 20%,
        #f5f1e8 60%,
        #c9b8a6 100%
    );

    color:#222;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;

    background:rgba(0,0,0,0.3);
    backdrop-filter:blur(10px);

    z-index:1000;
}

.logo{
    font-size:2.5rem;
    font-weight:bold;
    color:white;
    letter-spacing:4px;
    text-transform:uppercase;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:20px;
}

.navbar a{
    color:white;
    text-decoration:none;

    padding:12px 20px;
    border-radius:30px;

    transition:0.3s;
}

.navbar a:hover{
    background:#d4af37;
    color:black;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url("images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-content{
    max-width:800px;
    color:white;
}

.hero h1{
    font-size:5rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.3rem;
    margin-bottom:30px;
}

.btn{
    display:inline-block;

    padding:15px 35px;

    background:#d4af37;
    color:black;

    text-decoration:none;
    border-radius:50px;

    font-weight:bold;

    transition:0.3s;
}

.btn:hover{
    transform:translateY(-5px);
}

/* =========================
   SECTION
========================= */

.section{
    padding:100px 50px;
    text-align:center;
}

.section h2{
    font-size:3rem;
    margin-bottom:30px;
    color:#0d5eaf;
}

.section p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

/* =========================
   CARDS
========================= */

.cards{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;

    margin-top:50px;
}

.card{
    width:320px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);

    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:25px;
}

.card h3{
    margin-bottom:10px;
    color:#0d5eaf;
}

/* =========================
   GALLERY
========================= */

.gallery{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:20px;
}

.photo{
    overflow:hidden;
    border-radius:20px;
}

.photo img{
    width:100%;
    height:300px;
    object-fit:cover;

    transition:0.5s;
}

.photo img:hover{
    transform:scale(1.1);
}

/* =========================
   FORM
========================= */

form{
    max-width:600px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;

    border:none;
    border-radius:10px;

    font-size:1rem;
}

button{
    padding:15px;

    border:none;
    border-radius:10px;

    background:#d4af37;

    cursor:pointer;
    font-weight:bold;
}

button:hover{
    opacity:0.9;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#0d5eaf;
    color:white;

    text-align:center;

    padding:40px;
}

/* =========================
   MOBILE VERSION
========================= */

@media (max-width: 768px){

    /* NAVBAR */
    .navbar{
        position:relative;
        flex-direction:column;
        gap:15px;
        padding:15px 10px;
    }

    .logo{
        font-size:1.8rem;
        letter-spacing:2px;
    }

    .navbar ul{
        width:100%;
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .navbar a{
        display:block;
        padding:8px 12px;
        font-size:0.9rem;
    }


    /* HERO */
    .hero{
        min-height:80vh;
        padding:40px 20px;
    }

    .hero-content{
        width:100%;
    }

    .hero h1{
        font-size:2.5rem;
        line-height:1.2;
    }

    .hero p{
        font-size:1.1rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:100%;
        max-width:280px;
    }


    /* SECTIONS */
    .section{
        padding:70px 15px;
    }

    .section h2{
        font-size:2rem;
    }


    /* CARDS */
    .cards{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:25px;
    }

    .card{
        width:100%;
        max-width:350px;
    }

    .card img{
        height:220px;
    }


    /* GALLERY */
    .gallery{
        grid-template-columns:1fr;
        gap:15px;
    }

    .photo img{
        height:250px;
    }


    /* STORY */
    .greek-story{
        flex-direction:column;
        padding:70px 20px;
        gap:30px;
    }

    .story-image img{
        width:100%;
        max-width:500px;
    }

    .story-text{
        width:100%;
        text-align:center;
    }


    /* PARALLAX */
    .parallax{
        height:50vh;
        background-attachment:scroll;
    }

    .parallax-overlay h2{
        font-size:2.5rem;
    }


    /* INGREDIENTS */
    .ingredients{
        padding:70px 20px;
    }

    .ingredient-grid{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .ingredient img{
        width:130px;
        height:130px;
    }


    /* FORM */
    form{
        width:100%;
        padding:0 10px;
    }


    /* FOOTER */
    footer{
        padding:30px 15px;
    }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px){

    .logo{
        font-size:1.5rem;
    }

    .navbar ul{
        gap:5px;
    }

    .navbar a{
        padding:7px 9px;
        font-size:0.8rem;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .section{
        padding:50px 10px;
    }

    .section h2{
        font-size:1.7rem;
    }

    .card{
        max-width:100%;
    }

    .ingredient-grid{
        grid-template-columns:1fr;
    }

    .parallax-overlay h2{
        font-size:2rem;
    }

}


.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.hero-content{
    opacity:0;
    transform:translateY(50px);
    transition:1.2s ease;
}



/* =========================
   HERO PREMIUM
========================= */

.hero{
    min-height:80vh;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQpswNdP4pE3w7-Te1AeNXJg1RjHCpzctpS0jO9oigvnQ&s=10");

    background-size:cover;
    background-position:center;
}

.hero-content{
    color:white;
    max-width:800px;
}

.hero h1{
    font-size:5rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.5rem;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
}

.btn-outline{
    background:transparent;
    border:2px solid white;
    color:white;
}

/* =========================
   STORY
========================= */

.greek-story{
    display:flex;
    align-items:center;
    gap:60px;

    padding:120px 10%;

    background:white;
}

.story-image img{
    width:500px;
    border-radius:20px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.2);
}

.story-text{
    max-width:600px;
}

.story-text h2{
    color:#0d5eaf;
    margin-bottom:20px;
}

/* =========================
   PARALLAX
========================= */

.parallax{
    height:70vh;

    background:
    linear-gradient(
        rgba(0,0,0,.4),
        rgba(0,0,0,.4)
    ),
    url("images/sea.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    justify-content:center;
    align-items:center;
}

.parallax-overlay{
    color:white;
    text-align:center;
}

.parallax-overlay h2{
    font-size:4rem;
}

/* =========================
   INGREDIENTS
========================= */

.ingredients{
    padding:120px 10%;
    background:white;
    text-align:center;
}

.ingredient-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:50px;
}

.ingredient img{
    width:180px;
    height:180px;

    object-fit:cover;

    border-radius:50%;

    transition:.4s;
}

.ingredient img:hover{
    transform:scale(1.1);
}

/* =========================
   REVIEWS
========================= */

.reviews{
    padding:120px 10%;
    text-align:center;
}

.review-card{
    background:white;

    max-width:700px;

    margin:30px auto;

    padding:30px;

    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.15);
}
^*/






