/* Sticky Navigation Bar */
html, body {
    overflow-x: hidden !important;
  }
  
  
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255 255 255 / 67%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video-section {
    text-align: center;
    padding: 0px;
    background: #ffffff;
}

.video-container {
    position: relative;
    display: inline-block;
}

.bw-video {
    position: relative;

    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);

    transition: filter 0.3s ease-in-out;
}

.bw-video:hover {
    filter: grayscale(50%) contrast(100%); /* Λιγότερο έντονο grayscale όταν περνάς το ποντίκι */
}

/* Minimal ασπρόμαυρο εικονίδιο ήχου */
.volume-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    /* background: rgba(255, 255, 255, 0.1); */
    color: white;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    ;
    /* backdrop-filter: blur(5px); */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

.volume-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1); /* Ελαφριά μεγέθυνση όταν περνάς πάνω */
}
/* Κενό section */
.empty-section {
    width: 100%;
    height: 174px;
    background: #fff; /* Λευκό background */
}
.logo img {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #222;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #b22222;
}
.nav-links li a:hover,
.nav-links li a.active { 
    color: #b22222; /* Χρώμα όταν το ποντίκι περνάει ή όταν είναι ενεργό */
}

/* Γραμμή κάτω από το κείμενο */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Απόσταση από τα γράμματα */
    width: 100%;
    height: 2px;
    background: #b22222;/* Χρώμα γραμμής */
    transform: scaleX(0); /* Αρχικά δεν φαίνεται */
    transition: transform 1.3s ease-in-out;
}

/* Όταν περνά το ποντίκι από πάνω */
.nav-links li a:hover::after {
    transform: scaleX(1); /* Εμφανίζεται η γραμμή */
}

/* Στυλ για το κουμπί menu (hamburger) */
.menu-toggle {
    display: none; /* Απόκρυψη σε desktop */
    background: none;
    border: none;
    color: black!important;
    font-size: 28px;
    cursor: pointer;
}
/* Responsive στυλ για κινητά */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 32%;
        right: 10%;
    }

    .nav-links {
        display: none; /* Απόκρυψη του μενού αρχικά */
        flex-direction: column;
        position: absolute;
        top: 77%;
        right: 0;
        background: white;
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
    }

    .nav-links.show {
        display: flex; /* Εμφάνιση όταν πατηθεί το κουμπί */
    }

    .nav-links li {
        display: block;
        margin: 10px 0;
    }
}
/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Για hamburger menu αν χρειαστεί */
    }
}


.vision-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54vh;
    background: #ffffff;
    padding: 50px;
}

.vision-container {
    display: flex
;
    max-height: 490px;
    /* max-width: 1147px; */
    /* width: 100%; */
}

.vision-text {
    flex: 1;
    padding: 40px;
}

.vision-text h2 {
    color: #d3a497;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
}

.vision-text p {
    font-size: 24px;
    color: #222;
    line-height: 1.5;
}

.vision-image {
    /* flex: 1; */
    width: 358px;
    min-height: 892px;
    /* position: relative; */
    top: 100px;
}

.vision-image img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column;
        text-align: center;
    }

    .vision-text {
        padding: 20px;
    }

    .vision-text p {
        font-size: 20px;
    }


    


}
.handmade-section {
    background: #fff;
}

.handmade-image img {
    width: 80%;
    height: 480px;
    position: relative;
    right: -11%;
    object-fit: cover;
}

.handmade-content {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.handmade-left {
    flex: 1;
    color: #aaa;
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-right: 40px;
}

.handmade-right {
    flex: 2;
}

.handmade-right h2 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.handmade-right p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .handmade-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .handmade-left {
        padding-right: 0;
        font-size: 20px;
        margin-top: 28%;
        margin-bottom: 20px;
    }

    .handmade-right h2 {
        font-size: 30px;
    }

    .handmade-right p {
        font-size: 16px;
    }
}

.quality-section {
    background: #ffffff;
    padding: 50px 20px;
}

.quality-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    flex-direction: row-reverse;
}

.quality-text {
    flex: 2;
    position: relative;
    
    padding-right: 40px;
    right: -9%;
}
.quality-text h2 {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.quality-text h3 {
    font-size: 22px;
    font-weight: normal;
    color: #c3b1ab;
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.quality-image {
    flex: 1;
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quality-container {
        flex-direction: column;
        text-align: center;
    }

    .quality-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .quality-text h2 {
        font-size: 36px;
    }

    .quality-text h3 {
        font-size: 20px;
    }

    .quality-text p {
        font-size: 16px;
    }
}
.flour-section {
    background: #fff;
    padding: 50px 20px;
}

.flour-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.flour-text {
    flex: 1;
    padding-right: 40px;
}

.flour-text h2 {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.flour-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #d9534f;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.flour-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.flour-image {
    flex: 1;
}

.flour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flour-container {
        flex-direction: column;
        text-align: center;
    }

    .flour-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .flour-text h2 {
        font-size: 36px;
    }

    .flour-text h3 {
        font-size: 16px;
    }

    .flour-text p {
        font-size: 16px;
    }
}
.tomato-section {
    background: #fff;
}

.tomato-image {
    position: relative;
    width: 53%;
    height: 400px;
    overflow: hidden;
}

.tomato-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.tomato-image h2 {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 42px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.tomato-content {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    align-items: center;
}

.tomato-left {
    flex: 1;
    color: #b22222;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.tomato-right {
    flex: 2;
}

.tomato-right p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tomato-image h2 {
        font-size: 36px;
    }

    .tomato-content {
        flex-direction: column;
        text-align: center;
    }

    .tomato-left {
        margin-bottom: 15px;
    }

    .tomato-right p {
        font-size: 16px;
    }
}
.mozzarella-section {
    background: #fff;
}

.mozzarella-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.mozzarella-image img {
    width: 43%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    right: -33%;
}

.mozzarella-content {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    align-items: center;
}

.mozzarella-left {
    flex: 1;
    padding-right: 40px;
}

.mozzarella-left h2 {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.mozzarella-left h3 {
    font-size: 18px;
    font-weight: bold;
    color: #b22222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mozzarella-right {
    flex: 2;
}

.mozzarella-right p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mozzarella-content {
        flex-direction: column;
        text-align: center;
    }

    .mozzarella-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .mozzarella-left h2 {
        font-size: 36px;
    }

    .mozzarella-left h3 {
        font-size: 16px;
    }

    .mozzarella-right p {
        font-size: 16px;
    }
}
.oliveoil-section {
    background: #fff;
}

.oliveoil-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.oliveoil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.oliveoil-content {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    align-items: center;
}

.oliveoil-left {
    flex: 1;
    padding-right: 40px;
}

.oliveoil-left h2 {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.oliveoil-left h3 {
    font-size: 18px;
    font-weight: bold;
    color: #b22222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.oliveoil-right {
    flex: 2;
}

.oliveoil-right p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .oliveoil-content {
        flex-direction: column;
        text-align: center;
    }

    .oliveoil-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .oliveoil-left h2 {
        font-size: 36px;
    }

    .oliveoil-left h3 {
        font-size: 16px;
    }

    .oliveoil-right p {
        font-size: 16px;
    }
}
.salt-section {
    position: relative;
    background: url('sea-salt.png') no-repeat center center/cover;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
}

.salt-overlay {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    align-items: center;
    width: 100%;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.salt-left {
    flex: 1;
}

.salt-left h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.salt-left h3 {
    font-size: 18px;
    font-weight: bold;
    color: #b22222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.salt-right {
    flex: 2;
}

.salt-right p {
    font-size: 18px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .salt-overlay {
        flex-direction: column;
        text-align: center;
    }

    .salt-left {
        margin-bottom: 20px;
    }

    .salt-left h2 {
        font-size: 36px;
    }

    .salt-left h3 {
        font-size: 16px;
    }

    .salt-right p {
        font-size: 16px;
    }
}
.menu-section {
    background: #f5ecda;
    height:75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu-container {
    max-width: 800px;
}

.menu-logo {
    width: 150px;
    margin-bottom: 20px;
}

.menu-container h1 {
    font-size: 48px;
    font-weight: bold;
    color: #2d2926;
    margin-bottom: 10px;
}

.menu-container h3 {
    font-size: 22px;
    font-weight: normal;
    color: #a89f99;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-container h1 {
        font-size: 36px;
    }

    .menu-container h3 {
        font-size: 18px;
    }
}
.pizza-menu {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}

.pizza-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    gap: 40px;
}

.pizza-item {
    flex: 1;
}

.pizza-image {
    position: relative;
}

.pizza-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 35%;
}

.veg-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
}

.pizza-item h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 15px;
    color: #222;
}

.pizza-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    max-width: 400px;
    margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pizza-container {
        flex-direction: column;
        gap: 20px;
    }

    .pizza-item h2 {
        font-size: 28px;
    }

    .pizza-item p {
        font-size: 14px;
    }
}
.baking-section {
    background: #fff;
    padding: 50px 20px;
}

.baking-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.baking-text {
    flex: 1;
    padding-right: 40px;
}

.baking-text h2 {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.baking-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.baking-image {
    flex: 1;
}

.baking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .baking-container {
        flex-direction: column;
        text-align: center;
    }

    .baking-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .baking-text h2 {
        font-size: 36px;
    }

    .baking-text p {
        font-size: 16px;
    }
}
.pinsa-menu {
    background: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.pinsa-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    gap: 40px;
}

.pinsa-item {
    flex: 1;
}

.pinsa-image {
    position: relative;
}

.pinsa-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 30%;
}

.veg-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
}

.pinsa-item h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 15px;
    color: #222;
}

.pinsa-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    max-width: 400px;
    margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pinsa-container {
        flex-direction: column;
        gap: 20px;
    }

    .pinsa-item h2 {
        font-size: 28px;
    }

    .pinsa-item p {
        font-size: 14px;
    }
}
.pinsa-single {
    background: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.pinsa-content {
    max-width: 800px;
    margin: auto;
}

.pinsa-image {
    position: relative;
    display: inline-block;
}

.pinsa-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 30%;
}

.veg-icon {
    position: absolute;
    top: -37px;
    right: 120px;
    width: 8% !important;
}
.pinsa-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 15px;
    color: #222;
}

.pinsa-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pinsa-image img {
        max-width: 300px;
    }

    .veg-icon {
        width: 30px;
        right: -10px;
    }

    .pinsa-content h2 {
        font-size: 28px;
    }

    .pinsa-content p {
        font-size: 14px;
    }
}
.process-section {
    background: #f5ecda;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.process-container {
    max-width: 800px;
}

.process-logo {
    width: 150px;
    margin-bottom: 20px;
}

.process-container h1 {
    font-size: 48px;
    font-weight: bold;
    color: #2d2926;
    margin-bottom: 10px;
}

.process-container h3 {
    font-size: 22px;
    font-weight: normal;
    color: #a89f99;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-container h1 {
        font-size: 36px;
    }

    .process-container h3 {
        font-size: 18px;
    }
}
.summary-section {
    background: #f5ecda;
    padding: 50px 20px;
}

.summary-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
}

.summary-left {
    flex: 1;
    padding-right: 40px;
}

.summary-left h1 {
    font-size: 60px;
    font-weight: bold;
    color: #d9534f;
}
.summary-left h2 {
    font-size: 28px;
    font-weight: normal;
    color: #222;
    margin-top: 10px;
}

.summary-right {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.column {
    flex: 1;
}

.column h3 {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    border-bottom: 2px solid #222;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

.red {
    color: #d9534f;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .summary-container {
        flex-direction: column;
        text-align: center;
    }

    .summary-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .summary-right {
        flex-direction: column;
        gap: 20px;
    }

    .column h3 {
        font-size: 20px;
    }

    .column ul li {
        font-size: 14px;
    }
}
.footer {
    background: #ffffff;
    color: #2d2926;
    text-align: center;
    padding: 40px 20px;
}

.footer-container {
    max-width: 800px;
    margin: auto;
}

.footer-logo {
    width: 100px;
    margin-bottom: 15px;
}

.footer p {
    font-size: 16px;
    margin: 5px 0;
    font-family: 'Playfair Display', serif;
}

.footer a {
    color: #2d2926;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
    font-family: 'Open Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer p {
        font-size: 14px;
    }

    .copyright {
        font-size: 12px;
    }
}
.contact-section {
    background: #f5ecda; /* Μπεζ απόχρωση για ομοιομορφία */
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: auto;
}

.contact-container h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2d2926;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2d2926;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    background: #2d2926;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #b22222;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container h2 {
        font-size: 28px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.double-image-section {
    width: 100%;
    height: 470px; /* Ύψος του section */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Απόσταση μεταξύ εικόνων */
    background: #ffffff;
}

.double-image-section img {
    width: 40%; /* Κάθε εικόνα να καταλαμβάνει το 40% του πλάτους */
    max-height: 100%;
    object-fit: contain; /* Για να διατηρείται το aspect ratio */
}

/* Ασπρόμαυρη έκδοση δεξιά */
.bw-img {
    filter: grayscale(100%);
}
.image-section {
    width: 100%;
    height: 300px; /* Ύψος του section */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.image-section img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Προσαρμόζει την εικόνα χωρίς παραμόρφωση */
}
/* Αρχική κατάσταση: Αόρατα και μετακινημένα */
.come-in-bottom,
.come-in-top,
.come-in-left,
.come-in-right,
.come-in-scale {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Από κάτω προς τα πάνω */
.come-in-bottom {
    transform: translateY(50px);
}
.come-in-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Από πάνω προς τα κάτω */
.come-in-top {
    transform: translateY(-50px);
}
.come-in-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Από αριστερά προς τα δεξιά */
.come-in-left {
    transform: translateX(-50px);
}
.come-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Από δεξιά προς τα αριστερά */
.come-in-right {
    transform: translateX(50px);
}
.come-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Από μικρό σε μεγάλο */
.come-in-scale {
    transform: scale(0.8);
}
.come-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}
.handmade-section {
    display: flex
;
    flex-direction: row;
    gap: 20px;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}
/* Responsive Design */
@media (max-width: 768px) {
    .mozzarella-section img {
        left: 14%;
        width: 77%;
        height: 119%;
    }

    .tomato-image {
        left: 1%;
        display: block; /* Βεβαιώνεται ότι η εικόνα είναι ορατή */
        width: 105%; /* Κάνει την εικόνα να καταλαμβάνει το 70% του container */
        max-width: 100%; /* Δεν επιτρέπει στην εικόνα να υπερβαίνει το container */
        height: auto; /* Διατηρεί τις αναλογίες της εικόνας */
        margin: 0 auto; /* Κεντράρει την εικόνα οριζόντια */
    }
    .tomato-image h2 {

        top: 2%;

    }
    
    .quality-text {

        right: 0%;

    }




    .image-section img{

        width: 100%;
        height: 119%;

    }


    .double-image-section {
        flex-direction: column-reverse;/* Τα κάνει το ένα κάτω από το άλλο */
        height: auto; /* Επιτρέπει στο ύψος να προσαρμόζεται */
        gap: 10px; /* Μειώνει το κενό μεταξύ τους */
        padding: 20px 0; /* Προσθέτει λίγο χώρο πάνω-κάτω */
    }

    .double-image-section img {
        width: 80%; /* Περιορίζει το πλάτος ώστε να μη γεμίζει όλη την οθόνη */
        max-width: 400px; /* Περιορισμός στο μέγιστο μέγεθος */
    }


    .vision-image img {
        position: relative;
 
        width: 69%;
        height: 64%;
        object-fit: cover;
        border-radius: 8px;
        transform: rotate(90deg) !important;
    }
    .handmade-section {
        flex-direction: column-reverse; /* Ανάποδη σειρά σε κινητό */
        text-align: center; /* Κεντράρισμα κειμένου */
    }

    .handmade-image img {
        width: 121%;
        height: 280px;
        position: relative;
        right: 13px;
    }

}