*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  background-color: #F8F3E7;  
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  font-family: Inria Serif;
  flex-direction: column;

}
header{
    width: 80%;
    margin-top: 20px;
}
html, body {
    overflow-x: hidden !important;
}
.logo{
    width: 7vw;
}
.header{
    width: 100%;
    height: 7vh;
    padding: 15px;
    background: rgba(221, 211, 204, 0.35);
    backdrop-filter: blur(47.8px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header a{
text-decoration: none;
color: #6A994E;
}
.center-nav{
    display: flex;
    gap: 3vw;
    font-size: 18px;
    font-weight: 500;
}
.section {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.section-1 {
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

/* Pizza 3D Canvas */
.pizza-container {
    position: absolute;   
    width: 500px;
    height: 500px;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}
/* Model Viewer specific styling */
.pizza-container model-viewer {
    width: 100%;
    height: 100%;
    display: block;
}

/* Pizza Text (behind the pizza) */
.pizza-text {
    position: absolute;
    font-size: 380px;
    color: #6A994E;
    letter-spacing: 20px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Leaves - Using actual images */
.leaf {
    position: absolute;
    width: 200px;
    height: auto;
    z-index: 3;
    transition: transform 0.3s ease-out;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15));
}

/* Blurred leaves for depth effect */
.leaf.blurred {
    filter: blur(3px) drop-shadow(0 4px 15px rgba(0,0,0,0.1));
    opacity: 0.7;
    z-index: 2;
}


.leaf-1 {
    top: 5%;
    left: 0%;
    transform: rotate(-25deg);
    width: 180px;
}

.leaf-2 {
    top: 8%;
    left: 25%;
    transform: rotate(15deg);
    width: 150px;
}

.leaf-3 {
    top: 10%;
    right: 0%;
    transform: rotate(160deg) scaleX(-1);
    width: 170px;
}

.leaf-4 {
    bottom: 8%;
    left: 15%;
    transform: rotate(80deg);
    width: 360px;
}

.leaf-5 {
    top: 10%;
    right: 40%;
    transform: rotate(-100deg);
    width: 250px;
}

.leaf-6 {
    bottom: 3%;
    right: 25%;
    transform: rotate(-110deg) scaleX(-1);
    width: 220px;
}
.leaf-7 {
    top: 15%;
    right: 10%;
    transform: rotate(-110deg) scaleX(-1);
    width: 320px;
}


.tomato {
    position: absolute;
    width: 140px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
    transition: transform 0.3s ease-out;
}

.tomato-1 {
    top: 14%;
    left: 18%;
    transform: rotate(20deg);
    width: 320px;
}

.tomato-2 {
    bottom: 22%;
    right: 18%;
    transform: rotate(-30deg);
    width: 290px;
}

.section-2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}
.container-2 {

    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    padding: 40px;
}


.bg-leaf-blur {
    position: absolute;
    width: 240px;
    height: auto;
    top: 0%;
    left: 0;
    z-index: 1;
    opacity:1;
    /* transform: rotate(-30deg); */
}


.pizza-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 600px;
}

/* Circle background with blur */
.circle-bg {
    position: absolute;
    left: 20%;
    width: 550px;
    height: 550px;
    z-index: 2;
    filter: blur(20px);
    opacity: 0.7;
}

/* Placeholder for pizza model */
.pizza-placeholder {
    width: 650px;
    height: 650px;
    position: relative;
    z-index: 10;
}

/* Right Side - Content */
.content-side {
    flex: 1;
    z-index: 5;
width: 50%;
padding-right: 50px;
}

/* PIZZAPINO Title with stroke effect */
.pizzapino-title {
    font-size: 120px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: transparent;
    -webkit-text-stroke: 4px #6A994E;
    filter: drop-shadow(-4px 4px 0px #6A994E);
    line-height: 1.2;
}


.description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}


.read-more-btn {
    margin-top: 30px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    background-color: #6A994E;
    color: white;
    border: 2px solid #6A994E;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more-btn:hover {
    background-color: white;
    color: #6A994E;
    border: 2px solid #6A994E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(106, 153, 78, 0.3);
}

/* third section  */

.section-3 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 60px;
    position: relative;
}

.container-3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 40px;
}

.section-title {
    font-size: 80px;
    color: #6A994E;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 140px;
}

.section-title::after {
    width: 120px;
    height: 4px;
    background-color: #6A994E;
    border-radius: 2px;
}

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 70%;
}

.pizza-card {
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height:60vh;
    position: relative;
}
.card1{
background-color: #6A994E;
}

.pizza-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pizza-3d-container {
    position: relative;
    width: 100%;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    z-index: 10;
}

.pizza-3d-model {
    width: 110%;
    height: 110%;
    z-index: 10;
    transform: scale(1.2);
    position: absolute;
    top: -30%;
}

.pizza-card:hover .pizza-3d-model {
    transform: scale(1.45);
}

.veg-img {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    z-index: 5;
}

.pizza-card:hover {
    transform: scale(1.1);
}

.pizza-content {
    margin-top: 190px;
    padding: 20px 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pizza-name {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    font-family: 'Inria Serif', serif;
}
.card2{
    background-color: #E68F47;
}
.card3{
    background-color: #D6AA01;
}
.try-now-btn {
    padding: 13px 40px;
    background-color: white;
    color: inherit;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inria Serif', serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.card-vegetables .try-now-btn {
    color: #7AB75D;
}
.card-mushrooms .try-now-btn {
    color: #E9955C;
}
.card-margarita .try-now-btn {
    color: #D4B341;
}
.try-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.try-now-btn:active {
    transform: translateY(0);
}
.decorative-leaf {
    position: absolute;
    z-index: 1;
    opacity: 1;
}
.leaf-left {
    bottom: -40%;
    left: 0%;
    width: 340px;  
}
.leaf-right {
   top: 10%;
    right: 0%;
    width: 180px;  
}
.section-4{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px;
    position: relative;  
}
.sec-4left{
    width: 40%;
    padding-left: 40px;
    padding-top: 80px;
    text-align: left;
}
.sec-4left-title{
    color: #556B2F;
    font-weight: 800;
    font-size: 68px;
    margin-bottom: 60px;
}
.custmr-rev{
    gap: 55px;
}
.custmr-rev h1{
    color: #556B2F;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 10px;
}
.custmr-rev img{
    width: 120px;
    margin-bottom: 10px;
}
.custmr-rev p{
   font-size: 16px;
   color: rgb(47, 47, 47);
   margin-bottom: 10px;
}
.sec-4right {
    width: 60%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-ellipse img{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.pizza-container-4 {
    position: relative;
    width: 100%;
    height: 600px;
    z-index: 2;
}

.pizza {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pizza img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pizza-1{
   top: -5%;
   right: 5%;
}
.pizza-2{
    top: 70%;
    right: 5%;   
}
.pizza-3{
    right: 40%;
    bottom: -2%;   
}
footer {
    margin-top: 100px;
    width: 100%; 
    height: 40vh;
    position: relative;
    padding: 0 40px 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Vertical lines background */
.footer-lines {
    position: absolute;
    inset: 0;
    width: 30%;
    height: 100%;
    z-index: 1;
}

.footer-lines img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    z-index: 1;
}


/* Green footer card */
.footer-card {
    position: relative;
    background:#6A994E;
    border-radius: 20px;
    padding: 50px 60px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Pizza slice decoration */
.pizza-decoration {
    position: absolute;
    bottom: -10px;
    right: 0;
    z-index: 3;
}


.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 8px;
}

/* Navigation Columns */
.footer-nav {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.contact-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

/* Add these responsive styles to your existing CSS */

/* Mobile Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
    margin-right: 15px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #6A994E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(221, 211, 204, 0.98);
    backdrop-filter: blur(47.8px);
    z-index: 1000;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: #6A994E;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid rgba(106, 153, 78, 0.2);
}

.mobile-nav a:last-child {
    border-bottom: none;
}



/* ===== About page  ===== */

.about-text {
    position: absolute;
    font-size: 380px;
    color: transparent;
    -webkit-text-stroke: 4px #6A994E;
    filter: drop-shadow(-4px 4px 0px #6A994E);
    line-height: 1.2;
    letter-spacing: 20px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* Pizza 3D Canvas - Fixed Animation */
.about-pizza-container {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 10;
    top: 50%;
    left: 50%;
    /* Start completely off-screen at bottom */
    transform: translate(-50%, -50%) translateY(100vh);
    will-change: transform;
    /* Smoother transition with better timing */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.about-pizza-container.animate-up {
    /* Move to center position */
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
}

.about-pizza-container.animate-down {
    /* Move completely off-screen to top */
    transform: translate(-50%, -50%) translateY(-100vh);
    opacity: 0;
}

/* Ensure model viewer doesn't interfere */
.about-pizza-container model-viewer {
    width: 100%;
    height: 100%;
    display: block;
    /* Prevent any default transformations */
    transform: none !important;
}

.AB-sec2{
    background-color: #6A994E;
     height: 80vh;
     width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
}
.AB-sec2-left{
    width: 50%;
    padding: 70px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.AB-sec2-left h1{
    font-size: 58px;
    width: 76%;
    color: #ffffff;
}

.AB-sec2-left p{
    font-size: 20px;
    width: 76%;
    color: #ffffff;
}
.custom-list {
 
    padding: 30px;
    width: 76%;
    border-radius: 8px;
    color: white;
    font-family: Arial, sans-serif;
  }
  
  .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  
  .bullet {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    margin-top: 4px;
  }
  
  .item p {
    margin: 0;
    line-height: 1.4;
  }

.AB-sec2-right{
    width: 50%;
   
  }
  .AB-sec2-right img{
    height: 85vh;
    position: absolute;
   right: 0;
   bottom: 10%;
  }

  .ab-sec3 {
    position: relative;
    min-height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ab-sec3-container {
     width: 80%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Section Header */
.ab-sec3-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-sec3-main-title, .ab-sec3-sub-title {
    font-family: 'Inria Serif', serif;
    font-size: 48px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.ab-sec3-sub-title {
    margin-top: 10px;
}

.ab-sec3-highlight {
    color: #6A994E;
    font-style: italic;
}

/* Grid Layout */
.ab-sec3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    margin-top: 80px;
}

/* Common styling for all sections */
.ab-sec3-item {
    position: relative;
    width: 450px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Left and Right sections with white background */
.ab-sec3-left-section, .ab-sec3-right-section {
    background: white;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Green lines for left and right sections */
.ab-sec3-green-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 35px;           
    background: #556B2F;
    width: 100%;             
    border-radius: 2px;
    z-index: -1;
}

.ab-sec3-top-line {
    top: -25px;

}

.ab-sec3-bottom-line {
    bottom: -25px;
}

/* Middle section - Chef image */
.ab-sec3-middle-section {
    background: transparent;
    z-index: 2;
}

.ab-sec3-chef-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.ab-sec3-chef-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}


/* 3D Model containers */
.ab-sec3-model-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    /* overflow: hidden; */
    align-items: center;
}

.ab-sec3-vegetables-container model-viewer {
    background: transparent;
}

.ab-sec3-book-container model-viewer {
    background: transparent;
}

/* Animation effects */
.ab-sec3-item {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-sec3-item.ab-sec3-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ab-sec3-left-section.ab-sec3-animate-in {
    animation: ab-sec3-slideInLeft 1s ease-out;
}

.ab-sec3-middle-section.ab-sec3-animate-in {
    animation: ab-sec3-fadeInUp 1s ease-out 0.3s both;
}

.ab-sec3-right-section.ab-sec3-animate-in {
    animation: ab-sec3-slideInRight 1s ease-out 0.6s both;
}

/* Keyframe animations */
@keyframes ab-sec3-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes ab-sec3-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes ab-sec3-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Decorative leaf */
.ab-sec3-leaf-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    opacity: 0.3;
    z-index: 1;
}





.ab-sec4{
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.AB-sec4-left{
    width: 50%;
    padding: 0 0 10px 70px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.AB-sec4-left h1{
    font-size: 58px;
    width: 70%;
    color: #556B2F;
}
.AB-sec4-left p{
    font-size: 18px;
    width: 80%;
}
.AB-sec4-right{
    width: 50%;
    padding: 0 100px 10px 0;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  /* .AB-sec4-right img {
   
  } */
  .fade-img {
    opacity: 0;
    width: 90%;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* when mouse enters the section */
.AB-sec4-right:hover .fade-img {
    opacity: 1;
    transform: translateX(0);
}

/* when mouse leaves → fade out to right */
.AB-sec4-right .fade-img {
    pointer-events: none;
}

.ab-sec5{
    width: 100%;
    height: 70vh;
    background-image:url(assets/image\ 26.png) ;
    position: relative;
    margin-top: 0;
}
.ab-sec5 h1{
position: absolute;
top: 30%;
left: 10%;
width: 35%;
font-size: 58px;
color: #ffffff;
text-align: center;
}


.pizza-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* --- MODEL ANIMATION ON SCROLL --- */
.about-pizza-container {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 10;
    top: 50%;
    left: 50%;

    /* start off-screen */
    transform: translate(-50%, -50%) translateY(150px);
    opacity: 0;

    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-pizza-container.animate-up {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
}

.about-pizza-container.animate-down {
    transform: translate(-50%, -50%) translateY(150px);
    opacity: 0;
}

/* MODEL VIEWER SIZE FIX */
.about-pizza-container model-viewer {
    width: 100%;
    height: 100%;
    display: block;
    transform: none !important;
}



        /* menu page  */




/* Menu Hero Container */
.menu-hero-container {
    position: relative;
    width: 100%;
    height: 115vh;
    overflow: hidden;
    margin-top: -80px; 
    padding-top: 80px; 
}

/* Green Background Shape */
.menu-green-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 97%;
    z-index: 1;
}

#mainPizza {
    width: 450px;     /* or whatever size you want */
    height: 450px;
    object-fit: contain;
}


.menu-green-background img {
    width: 93%;
    height: 90%;
    /* object-fit: cover; */
}

/* Content Wrapper */
.menu-content-wrapper {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    padding: 120px 0 20px 60px;
}

.menu-content-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.menu-left-content {
    flex: 1;
    color: white;
}

.menu-main-title {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
}

.menu-main-title .pizza-name {
    font-family: 'Holtwood One SC', serif;
    color: #FFE5B4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-description {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 20px;
}

/* Pizza Thumbnails */
.menu-pizza-thumbnails {
    display: flex;
    gap: 24px;
    padding-top: 40px;
}

.menu-thumbnail-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.menu-thumbnail-btn:hover {
    transform: scale(1.1);
}

.menu-thumbnail-btn:focus {
    outline: none;
}

.menu-thumbnail-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active Thumbnail Underline */
.menu-thumbnail-btn.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: white;
    border-radius: 2px;
    animation: expandWidth 0.3s ease-out;
}

/* Right Content - Pizza Display */
.menu-right-content {
    flex: 1;
    position: relative;
    /* height: 100vh; */
}

/* Blur Ellipse */
.menu-blur-ellipse {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background-image: url(assets/menuEllipse\ 1.png);
    background-size: cover;
    filter: blur(25px);
    opacity: 0.8;
}
.menu-home{
    color: white;
}

/* Animated Elements - Leaves */
.menu-leaf {
    position: absolute;
    z-index: 15;
}

.menu-leaf img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-leaf-1 {
    top: 15px;
    left: 0px;
    width: 190px;
    animation: floatLeaf 3s ease-in-out infinite;
}

.menu-leaf-2 {
    bottom: 10px;
    left: 10px;
    width: 150px;
    height: 150px;
    animation: floatLeaf2 3.5s ease-in-out infinite;
}

/* Animated Elements - Tomatoes */
.menu-tomato {
    position: absolute;
    z-index: 15;
}

.menu-tomato img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-tomato-1 {
    bottom: -170px;
    right: 550px;
    width: 180px;
    animation: floatTomato 2.8s ease-in-out infinite;
}

.menu-tomato-2 {
    top: -170px;
    right: 290px;
    width: 200px;
    animation: floatTomato 2.8s ease-in-out infinite 1s;
}

/* Main Pizza Display */
.menu-pizza-display {
    position: relative;
    z-index: 20;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.menu-pizza-image-wrapper {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.menu-pizza-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 50%;
}

/* Pizza Animation Classes */
.menu-pizza-image.fade-in {
    animation: fadeInScale 0.6s ease-out forwards;
}

.menu-pizza-image.fade-out {
    animation: fadeOut 0.4s ease-in forwards;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    to {
        opacity: 0;
        transform: scale(0.9) rotate(5deg);
    }
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatLeaf2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes floatTomato {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(10deg);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

/* Make sure header stays on top */
header {
    position: relative;
    z-index: 100;
}


.menu-sec-2{
    width: 100%;
    height: 100vh;
    gap: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menu-sec-2 h1{
    font-size: 58px;
    color: #6A994E;
    width: 38%;
    text-align: center;
}
.row{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 80px;
}
.row-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 60px;
    width: 50%;
}

.menu-category-title {
    font-size: 48px;
    color: #6A994E;
    margin-bottom: 20px;
    font-weight: 600;
}

.menu-item {
    border-bottom: 1px solid #D4C4A8;
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-left: 100px;
    width: 70%;
}


.menu-item-name {
    font-size: 1.5rem;
    color: #2C2C2C;
    font-weight: 600;
    margin-bottom: 10px;
}

.menu-item-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Right Side - Pizza Image */
.row-right {
    flex: 1;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.pizza-board-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.pizza-board-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.menu-sec-3{
    width: 100%;
    height: 60vh;
    gap: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;  
}

.row-right2 {
    width: 50%;
}
.menu-sec-4{
    width: 100%;
    height: 110vh;
    gap: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.row-left-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 60px;
    width: 50%;
    position: relative;
}

/* Leaf Images */
.leaf-decoration {
    position: absolute;
    z-index: 10;
}

.leaf-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Left side leaf (bottom left) */
.row-left-4 .leaf-decoration {
    bottom: -50%;
    left: -14%;
    width: 490px;
    height: 490px;
}
.row-right-4 {
    flex: 1;
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 60px;
}

/* Right side leaves (top right) - positioned ABOVE content */
.row-right-4 .leaf-decoration {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 620px;
    height: 620px;
    z-index: 5; 
}

/* Content wrapper for desserts */
.ghg {
    position: absolute; 
    z-index: 10; 
    margin-top: 0; 
    top: 90%;
}

.rightleeef{
    position: absolute; 
    top: -40%;
}


     /* MAIN CONTAINER */
.menu-deals-container {
    width: 100%;
    height: 95vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    margin-top: 50px;
    position: relative;
}

/* LEFT SIDE */
.menu-left-box {
    width: 40%;
    padding-left: 80px;
}

.menu-left-box h1 {
    font-size: 55px;
    color: #6d8c54;
    line-height: 1.1;
}

.menu-left-box p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
    width: 80%;
}

.order-btn {
    margin-top: 30px;
    background: #6d8c54;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.mini-avatars {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.mini-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

/* RIGHT SIDE */
.menu-right-box {
    width: 60%;
    position: relative;
}

/* MAIN GREEN OFFER BOX */
.offer-box {
    background: #6d8c54;
    padding: 45px 40px;
    border-radius: 12px;
    color: white;
    position: absolute;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    width: 500px;          /* BIGGER WIDTH */
    height: 260px;         /* BIGGER HEIGHT */
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-box h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-box p {
    width: 85%;
    font-size: 18px;
    line-height: 1.4;
}

.offer-box h3 {
    font-size: 32px;
    margin-top: 20px;
}

/* MAIN BIG IMAGE IN CENTER */
.main-offer-img {
    position: absolute;
    left: 10%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 400px;          /* SMALLER NOW */
    z-index: 2;
    pointer-events: none;
}

/* TOP SMALL IMAGE */
#topOffer {
    position: absolute;
    right: 10%;
    top: 280px;
    width: 190px;
    cursor: pointer;
    z-index: 3;
}

/* BOTTOM SMALL IMAGE */
#bottomOffer {
    position: absolute;
    right: 5%;
    bottom: 20px;
    width: 190px;
    cursor: pointer;
    z-index: 3;
}



   .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease-out;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Direction variations */
.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left.show,
.reveal-right.show,
.reveal-up.show {
    transform: translate(0, 0);
}


/* ============================================
   1200px BREAKPOINT - Tablets & Small Laptops
   ============================================ */
@media (max-width: 1200px) {
    /* Hero Section */
    .menu-hero-container {
        height: auto;
        min-height: 90vh;
        padding-bottom: 40px;
    }

    .menu-content-wrapper {
        padding: 100px 40px 20px 40px;
    }

    .menu-content-grid {
        gap: 40px;
    }

    .menu-main-title {
        font-size: 4rem;
    }

    .menu-description {
        font-size: 1rem;
        max-width: 400px;
    }

    #mainPizza {
        width: 380px;
        height: 380px;
    }

    .menu-blur-ellipse {
        width: 550px;
        height: 550px;
        right: -80px;
    }

    .menu-tomato-1 {
        bottom: -150px;
        right: 450px;
        width: 150px;
    }

    .menu-tomato-2 {
        top: -150px;
        right: 240px;
        width: 170px;
    }

    /* Section 2 */
    .menu-sec-2 h1 {
        font-size: 48px;
        width: 50%;
    }

    .row {
        gap: 50px;
    }

    .row-left {
        padding-left: 40px;
    }

    .menu-category-title {
        font-size: 40px;
    }

    .menu-item {
        margin-left: 60px;
        width: 80%;
    }

    /* Section 3 */
    .menu-sec-3 {
        height: auto;
        min-height: 50vh;
        padding: 40px 0;
    }

    /* Section 4 */
    .menu-sec-4 {
        height: auto;
        min-height: 100vh;
    }

    .row-left-4 {
        padding-left: 40px;
    }

    .row-left-4 .leaf-decoration {
        width: 400px;
        height: 400px;
        bottom: -40%;
    }

    .row-right-4 .leaf-decoration {
        width: 520px;
        height: 520px;
        top: -100px;
        right: -100px;
    }

    /* Deals Section */
    .menu-deals-container {
        height: auto;
        min-height: 80vh;
        padding: 40px 20px;
    }

    .menu-left-box {
        padding-left: 40px;
    }

    .menu-left-box h1 {
        font-size: 45px;
    }

    .menu-left-box p {
        font-size: 18px;
    }

    .offer-box {
        width: 440px;
        height: 240px;
        padding: 35px 30px;
    }

    .offer-box h2 {
        font-size: 28px;
    }

    .offer-box p {
        font-size: 16px;
    }

    .main-offer-img {
        width: 350px;
    }

    #topOffer, #bottomOffer {
        width: 160px;
    }
}

/* ============================================
   900px BREAKPOINT - Tablets Portrait
   ============================================ */
@media (max-width: 900px) {
    /* Hero Section */
    .menu-hero-container {
        height: auto;
        min-height: 100vh;
    }

    .menu-content-wrapper {
        padding: 80px 30px 20px 30px;
    }

    .menu-content-grid {
        flex-direction: column;
        gap: 30px;
    }

    .menu-green-background {
        width: 100%;
        height: 50%;
    }

    .menu-green-background img {
        width: 100%;
        height: 100%;
    }

    .menu-left-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-main-title {
        font-size: 3.5rem;
    }

    .menu-description {
        max-width: 100%;
    }

    .menu-pizza-thumbnails {
        justify-content: center;
    }

    .menu-right-content {
        margin-top: 30px;
    }

    #mainPizza {
        width: 320px;
        height: 320px;
    }

    .menu-pizza-display {
        width: 400px;
        height: 400px;
    }

    .menu-blur-ellipse {
        width: 450px;
        height: 450px;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .menu-leaf-1 {
        width: 140px;
        top: 20px;
        left: 20px;
    }

    .menu-leaf-2 {
        width: 120px;
        bottom: 20px;
        left: 20px;
    }

    .menu-tomato-1 {
        display: none;
    }

    .menu-tomato-2 {
        top: -100px;
        right: 20px;
        width: 140px;
    }

    /* Section 2 */
    .menu-sec-2 {
        height: auto;
        padding: 60px 0;
    }

    .menu-sec-2 h1 {
        font-size: 38px;
        width: 70%;
    }

    .row {
        flex-direction: column;
        gap: 40px;
    }

    .row-left {
        width: 100%;
        padding: 0 30px;
        align-items: center;
    }

    .menu-category-title {
        font-size: 36px;
        text-align: center;
    }

    .menu-item {
        margin-left: 0;
        width: 100%;
        max-width: 500px;
    }

    .row-right {
        width: 100%;
        padding: 0 30px;
    }

    .pizza-board-container {
        max-width: 450px;
    }

    /* Section 3 */
    .menu-sec-3 {
        flex-direction: column-reverse;
        padding: 60px 0;
    }

    .row-left {
        width: 100%;
    }

    .row-right2 {
        width: 100%;
        padding: 0 30px;
    }

    /* Section 4 */
    .menu-sec-4 {
        flex-direction: column;
        padding: 60px 0;
    }

    .row-left-4 {
        width: 100%;
        padding: 0 30px;
    }

    .row-left-4 .leaf-decoration {
        display: none;
    }

    .row-right-4 {
        width: 100%;
        padding: 0 30px;
        margin-top: 40px;
    }

    .row-right-4 .leaf-decoration {
        width: 400px;
        height: 400px;
        top: -80px;
        right: -60px;
    }

    .ghg {
        position: relative;
        top: 0;
    }

    /* Deals Section */
    .menu-deals-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }

    .menu-left-box {
        width: 100%;
        padding-left: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-left-box h1 {
        font-size: 40px;
    }

    .menu-left-box p {
        width: 100%;
        max-width: 600px;
    }

    .mini-avatars {
        justify-content: center;
    }

    .menu-right-box {
        width: 100%;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .offer-box {
        width: 90%;
        max-width: 450px;
        height: auto;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 20px;
    }

    .main-offer-img {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 300px;
        margin: 0 auto;
    }

    #topOffer {
        right: 10%;
        top: 50px;
        width: 140px;
    }

    #bottomOffer {
        right: 10%;
        bottom: 50px;
        width: 140px;
    }
}

/* ============================================
   680px BREAKPOINT - Mobile Devices
   ============================================ */
@media (max-width: 680px) {
    /* Hero Section */
    .menu-content-wrapper {
        padding: 60px 20px 20px 20px;
    }

    .menu-main-title {
        font-size: 2.5rem;
    }

    .menu-description {
        font-size: 0.95rem;
    }

    .menu-pizza-thumbnails {
        gap: 16px;
        padding-top: 30px;
    }

    .menu-thumbnail-wrapper {
        width: 70px;
        height: 70px;
        border: 3px solid white;
    }

    #mainPizza {
        width: 280px;
        height: 280px;
    }

    .menu-pizza-display {
        width: 300px;
        height: 300px;
    }

    .menu-blur-ellipse {
        width: 350px;
        height: 350px;
    }

    .menu-leaf-1 {
        width: 100px;
        top: 10px;
        left: 10px;
    }

    .menu-leaf-2 {
        width: 90px;
        bottom: 10px;
        left: 10px;
    }

    .menu-tomato-2 {
        top: -80px;
        right: 10px;
        width: 110px;
    }

    /* Section 2 */
    .menu-sec-2 h1 {
        font-size: 28px;
        width: 90%;
    }

    .row-left,
    .row-right {
        padding: 0 20px;
    }

    .menu-category-title {
        font-size: 28px;
    }

    .menu-item-name {
        font-size: 1.25rem;
    }

    .menu-item-description {
        font-size: 0.9rem;
    }

    .pizza-board-container {
        max-width: 350px;
    }

    /* Section 3 */
    .row-right2 {
        padding: 0 20px;
    }

    /* Section 4 */
    .row-left-4,
    .row-right-4 {
        padding: 0 20px;
    }

    .row-right-4 .leaf-decoration {
        width: 300px;
        height: 300px;
        top: -60px;
        right: -40px;
    }

    /* Deals Section */
    .menu-deals-container {
        padding: 30px 20px;
    }

    .menu-left-box h1 {
        font-size: 32px;
    }

    .menu-left-box p {
        font-size: 16px;
    }

    .order-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .mini-avatars img {
        width: 32px;
        height: 32px;
    }

    .menu-right-box {
        height: 450px;
    }

    .offer-box {
        width: 95%;
        padding: 25px 20px;
    }

    .offer-box h2 {
        font-size: 24px;
    }

    .offer-box p {
        font-size: 14px;
        width: 90%;
    }

    .offer-box h3 {
        font-size: 26px;
        margin-top: 15px;
    }

    .main-offer-img {
        width: 240px;
    }

    #topOffer {
        right: 5%;
        top: 30px;
        width: 110px;
    }

    #bottomOffer {
        right: 5%;
        bottom: 30px;
        width: 110px;
    }
}


  /* cotact-page */

  .contact-hero{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(assets/Group\ 45.png);
    background-size: cover;
     background-position: center;
     position: relative;
     margin-top: -20px !important;
     padding-top: 0;
   }
   .content {
       position: relative;
       text-align: center;
       color: white;
       z-index: 2;
     }
     
     .content h1 {
       font-size: 98px;
       font-weight: bold;
       margin-bottom: 10px;
     }
     
     .content p {
       font-size: 1.3rem;
       margin-bottom: 30px;
       opacity: 0.9;
     }
     
     /* Buttons */
     .btns {
       display: flex;
       gap: 20px;
       justify-content: center;
     }
     
     .btn {
       padding: 12px 28px;
       border-radius: 25px;
       font-size: 1rem;
       text-decoration: none;
       border: 2px solid white;
       transition: 0.3s ease;
     }
     
     /* White button */
     .primary {
       background: white;
       color: #2b4317;
     }
     
     .primary:hover {
       background: transparent;
       color: white;
     }
     
     /* Transparent button */
     .secondary {
       background: transparent;
       color: white;
     }
     
     .secondary:hover {
       background: white;
       color: #2b4317;
     }

     .contact-section {
        width: 100%;
        padding: 120px 50px 0 50px;
        position: relative;
        display: flex;
      flex-direction: column;
      align-items: center; 
      text-align: center;
      }
      
      /* ABSOLUTE LEAVES */
      .leaf-top {
        position: absolute;
        left: 0;
        top: 20px;
        width: 280px;
        opacity: 0.9;
      }

      /* TOP BOXES */
      .top-boxes {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 60px;
        width: 100%;
      }
      
      .box {
        width: 300px;       
        min-height: 200px;   
        background: #fff0;    
        padding: 30px 20px;
        text-align: center;
        border-radius: 8px;
      
        /* restore gradient border */
        border: 2px solid transparent;
        border-image-slice: 1;
        border-image-source: linear-gradient(
          to bottom,
          rgba(0,0,0,0),
          rgba(90,110,60,1)
        );
      
        transition: all .35s ease;
      }
      .icon-box{
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
      }
      
      .box:hover {
        transform: translateY(-12px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.18);
        border-image: linear-gradient(
            to bottom,
            rgba(90,110,60,0.4) 0%,
            rgba(90,110,60,1) 100%
          ) 1;
      }
      
      .box:hover .icon {
        transform: translateY(-3px) scale(1.05);
      }
      
      .box:hover h3 {
        transform: translateY(-3px);
      }
      
      .icon {
        transition: .3s ease;
      }
      
      .box h3 {
        transition: .3s ease;
      }
      
      /* MAIN FLEX AREA */
      .main-area {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
        margin-top: 40px;
      }
      
      /* LEFT SIDE */
      .left-content h2 {
        color: #556B2F;
        font-size: 3rem;
        margin-bottom: 20px;
        width: 600px;
        text-align: left;
      }
      
      .left-content p {
        width: 350px;
        line-height: 1.6;
        margin-bottom: 40px;
        text-align: left;
      }
      
      /* PIZZA ROTATE */
      .pizza {
        width: 230px;
        animation: rotatePizza 9s infinite linear;
        transform-style: preserve-3d;
      }
      
      @keyframes rotatePizza {
        0% { transform: rotateY(0deg); }
        100% { transform: rotateY(360deg); }
      }
      
      /* RIGHT FORM */
      .contact-form {
        display: flex;
        flex-direction: column;
        width: 420px;
        gap: 15px;
      }
      
      .contact-form input,
      .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: none;
        background: #6A994E;
        color: white;
        border-radius: 6px;
        font-size: 1rem;
      }
      
      .contact-form textarea {
        height: 160px;
      }
      
      .contact-form button {
        width: 120px;
        padding: 10px;
        border: 2px solid #6A994E;
        background: transparent;
        border-radius: 20px;
        font-weight: bold;
        cursor: pointer;
        transition: .3s;
      }
      
      .contact-form button:hover {
        background: #6A994E;
        color: white;
      }
      .center-line {
        width: 280px;        
        height: 4px;         
        background:  #6A994E; 
        margin-top: 0;
        border-radius: 5px;  
      }
        .contact-details-section {
    width: 100%;
    padding: 100px 80px;

}

.index-section-title {
    font-size: 3.2rem;
    color: #6A994E;
    margin-bottom: 70px;
    text-underline-offset: 6px;
}

.details-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* LEFT SIDE */
.left-contact {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 25px;
}

.contact-box {
    display: flex;
    align-items: flex-start;
    width: 80%;
    gap: 15px;
    padding: 18px 20px;
    border: 2px solid #7DA25B;
    border-radius: 10px;
    background: white;
}

.icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-top: 3px;
}

.contact-box h3 {
    font-size: 1.2rem;
    color: #4A6A3A;
    margin-bottom: 5px;
}

.contact-box p {
    color: #444;
    font-size: 0.95rem;
}

/* RIGHT SIDE MAP IMAGE */
.right-map {
    width: 50%;
}

.map-img {
    width: 100%;
    height:50vh;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-media-section{
    width: 100%;
    margin-top: 70px;

}

.sm-box {
    width: 350px;       
    height: 170px;   
    background: #fff0;    
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    color: #556B2F;

    border: 2px solid transparent;
    border-image-slice: 1;
    border-image-source: linear-gradient(
      to bottom,
      rgba(0,0,0,0),
      rgba(90,110,60,1)
    );
  
    transition: all .35s ease;
  }
  .sm-icon-box{
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .sm-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    border-image: linear-gradient(
        to bottom,
        rgba(90,110,60,0.4) 0%,
        rgba(90,110,60,1) 100%
      ) 1;
  }
  
  .sm-box:hover .icon {
    transform: translateY(-3px) scale(1.05);
  }
  
  .sm-box:hover h3 {
 
    transform: translateY(-3px);
  }
  
  .icon {
    transition: .3s ease;
  }
  
  .sm-box h3 {
    transition: .3s ease;
    font-size: 35px;
  }

  .contact-header{
    width: 100%;
    height: 7vh;
    padding: 15px;
    background: rgba(221, 211, 204, 0.35);
    backdrop-filter: blur(47.8px);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.contact-header a{
text-decoration: none;
color: #ffffff;
}
.contact-section-title{
    color: #6A994E;
    font-size: 58px;
    margin-bottom: 20px;
}
/* CONTACT DETAILS */
.contact-details-section {
    padding: 60px 20px;
  }

  .contact-box {
    width: 100%;
  }

  .map-img {
    height: 35vh;
  }



 
/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet Large - 1200px */
@media screen and (max-width: 1200px) {
    .logo {
        width: 9vw;
    }

    .center-nav {
        gap: 2vw;
        font-size: 16px;
    }

    /* Section 1 */
    .pizza-container {
        width: 450px;
        height: 450px;
    }

    .pizza-text {
        font-size: 320px;
    }

    .leaf-1, .leaf-3 { width: 160px; }
    .leaf-2 { width: 130px; }
    .leaf-4 { width: 320px; }
    .leaf-5 { width: 220px; }
    .leaf-6 { width: 200px; }
    .leaf-7 { width: 280px; }
    .tomato-1 { width: 280px; }
    .tomato-2 { width: 250px; }

    /* Section 2 */
    .container-2 {
        gap: 50px;
        padding: 30px;
    }

    .pizza-side {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circle-bg {
        width: 480px;
        height: 480px;
        left: 50%;
        transform: translateX(-50%);
    }

    .pizza-placeholder {
        width: 450px;
        height: 450px;
        margin: 0 auto;
    }

    .pizzapino-title {
        font-size: 100px;
    }

    .description {
        font-size: 15px;
    }

    /* Section 3 */
    .section-title {
        font-size: 70px;
        margin-bottom: 120px;
    }

    .pizza-grid {
        width: 80%;
        gap: 30px;
    }

    .pizza-card {
        height: 55vh;
    }

    .pizza-name {
        font-size: 42px;
    }

    .leaf-left { width: 300px; }
    .leaf-right { width: 160px; }

    /* Section 4 */
    .sec-4left-title {
        font-size: 60px;
        margin-bottom: 50px;
    }

    .custmr-rev h1 {
        font-size: 26px;
    }

    .custmr-rev p {
        font-size: 15px;
    }

    .pizza {
        width: 340px;
        height: 340px;
    }

    /* Footer */
    footer {
        height: auto;
        min-height: 35vh;
    }

    .footer-card {
        width: 85%;
        padding: 40px 50px;
    }

    .footer-nav {
        gap: 60px;
    }



    /* about page  */

 /* ABOUT TEXT */
 .about-text {
    font-size: 250px;
    letter-spacing: 10px;
}

.about-pizza-container {
    width: 380px;
    height: 380px;
}

/* SEC2 */
.AB-sec2-left {
    padding: 50px 10px 10px 50px;
}

.AB-sec2-left h1 {
    font-size: 42px;
}

.AB-sec2-left p,
.custom-list {
    width: 90%;
}

.AB-sec2-right img {
    height: 60vh;
    width: 50%;
    bottom: 5%;
}

/* SEC3 GRID */
.ab-sec3-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ab-sec3-middle-section {
    grid-column: span 2;
    height: 380px;
}

.ab-sec3-chef-image-container {
    height: 350px;
}
/* .ab-sec3-header{
    align-items: center;
    justify-content: center;
    display: flex;
} */

.ab-sec3-item {
    width: 500px;
    height: auto;
}

/* SEC4 */
.AB-sec4-left h1 {
    font-size: 42px;
    width: 90%;
}

.AB-sec4-right img {
    width: 100%;
}

/* SEC5 */
.ab-sec5 h1 {
    font-size: 42px;
    width: 60%;
}


        /* menu hero */

    .menu-content-grid {
        flex-direction: column;
    }

    .menu-green-background {
        width: 100%;
        height: 50%;
    }

    .menu-main-title {
        font-size: 3.5rem;
    }

    .menu-pizza-display {
        width: 400px;
        height: 400px;
    }


      /*contact page  */


 /* Contact Hero */
 .content h1 {
    font-size: 70px;
  }

  /* Top Boxes */
  .top-boxes {
    gap: 25px;
  }
  .box, .sm-box {
    width: 260px;
    min-height: 180px;
  }

  /* Main Area */
  .main-area {
    gap: 60px;
  }

  .left-content h2 {
    font-size: 2.4rem;
    width: 500px;
  }

  .left-content p {
    width: 300px;
  }

  .contact-form {
    width: 350px;
  }

  /* Contact Details */
  .details-container {
    gap: 30px;
  }
  .left-contact {
    width: 50%;
  }
  .right-map {
    width: 50%;
  }

}

/* Tablet - 900px */
@media screen and (max-width: 900px) {
    .logo {
        width: 10vw;
    }

    .center-nav {
        gap: 1.5vw;
        font-size: 15px;
    }

    /* Section 1 */
    .pizza-container {
        width: 400px;
        height: 400px;
    }

    .pizza-text {
        font-size: 260px;
        letter-spacing: 15px;
    }

    .leaf-1 { width: 140px; top: 8%; }
    .leaf-2 { width: 110px; }
    .leaf-3 { width: 150px; }
    .leaf-4 { width: 280px; }
    .leaf-5 { width: 200px; }
    .leaf-6 { width: 180px; }
    .leaf-7 { width: 250px; }
    .tomato-1 { width: 240px; }
    .tomato-2 { width: 220px; }

    /* Section 2 */
    .container-2 {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .bg-leaf-blur {
        width: 200px;
    }

    .pizza-side {
        width: 100%;
        min-height: 500px;
    }

    .circle-bg {
        width: 450px;
        height: 450px;
        left: 50%;
        transform: translateX(-50%);
    }

    .pizza-placeholder {
        width: 500px;
        height: 500px;
    }

    .content-side {
        width: 100%;
        padding: 0 20px;
    }

    .pizzapino-title {
        font-size: 80px;
        text-align: center;
        margin-bottom: 20px;
    }

    .description {
        font-size: 14px;
        text-align: center;
    }

    .read-more-btn {
        display: block;
        margin: 30px auto 0;
    }

    /* Section 3 */
    .section-title {
        font-size: 60px;
        margin-bottom: 100px;
    }

    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 85%;
        gap: 40px 25px;
    }

    .pizza-card {
        height: 50vh;
    }

    .pizza-3d-container {
        margin-top: -100px;
        height: 280px;
    }

    .veg-img {
        bottom: -100px;
        width: 80%;
    }

    .pizza-content {
        margin-top: 170px;
    }

    .pizza-name {
        font-size: 38px;
    }

    .leaf-left {
        width: 260px;
        bottom: -30%;
    }

    .leaf-right {
        width: 140px;
    }

    /* Section 4 */
    .section-4 {
        flex-direction: column;
        height: auto;
        padding: 60px 0;
    }

    .sec-4left {
        width: 100%;
        padding: 40px 30px;
    }

    .sec-4left-title {
        font-size: 50px;
        margin-bottom: 40px;
        text-align: center;
    }

    .custmr-rev {
        text-align: center;
    }

    .custmr-rev h1 {
        font-size: 24px;
    }

    .custmr-rev img {
        margin: 0 auto 10px;
        display: block;
    }

    .sec-4right {
        width: 100%;
        height: 500px;
        margin-top: 40px;
    }

    .pizza {
        width: 280px;
        height: 280px;
    }

    /* Footer */
    .footer-card {
        flex-direction: column;
        gap: 30px;
        width: 90%;
        padding: 35px 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-nav {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .pizza-decoration {
        bottom: -20px;
        right: 20px;
        width: 150px;
        height: 150px;
    }

    .ab-sec3-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ab-sec3-main-title, .ab-sec3-sub-title {
        font-size: 36px;
    }
    
    .ab-sec3-item {
        height: 350px;
    }
    
    .ab-sec3-model-container {
        height: 200px;
    }


 /* ABOUT SECTION */
 .about-text {
    font-size: 180px;
}

.about-pizza-container {
    width: 320px;
    height: 320px;
}

/* SEC2 — STACK */
.AB-sec2 {
    flex-direction: column;
    height: auto;
    padding-bottom: 80px;
    text-align: center;
}

.AB-sec2-left,
.AB-sec2-right {
    width: 100%;
    padding: 40px 30px;
}

.AB-sec2-left h1,
.AB-sec2-left p,
.custom-list {
    width: 100%;
    text-align: center;
}

.AB-sec2-right img {
    position: static;
    height: 320px;
    margin: 0 auto;
}

/* SEC3 — SINGLE COLUMN */
.ab-sec3-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
}

.ab-sec3-item {
    width: 100% !important;
}

.ab-sec3-chef-image-container {
    height: 300px;
}

/* SEC4 */
.ab-sec4 {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-bottom: 80px;
}

.AB-sec4-left,
.AB-sec4-right {
    width: 100%;
    padding: 40px 30px;
}

.AB-sec4-left h1,
.AB-sec4-left p {
    width: 100%;
}

.fade-img {
    width: 80%;
    margin: 0 auto;
}

/* SEC5 */
.ab-sec5 {
    height: 60vh;
}

.ab-sec5 h1 {
    font-size: 36px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

     /* menu hero */

     .menu-main-title {
        font-size: 2.5rem;
    }

    .menu-pizza-thumbnails {
        justify-content: center;
    }

    .menu-thumbnail-wrapper {
        width: 80px;
        height: 80px;
    }

    .menu-pizza-display {
        width: 350px;
        height: 350px;
    }

    .menu-leaf-1,
    .menu-leaf-2 {
        width: 60px;
        height: 60px;
    }

    .menu-tomato-1,
    .menu-tomato-2 {
        width: 40px;
        height: 40px;
    }


    /* contact page */

    /* TOP BOXES */
  .top-boxes {
    flex-wrap: wrap;
    gap: 20px;
  }
  .box, .sm-box {
    width: 45%;
    min-height: 170px;
  }

  /* MAIN AREA BECOMES COLUMN */
  .main-area {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 50px;
  }

  .left-content h2 {
    text-align: center;
    width: 100%;
    font-size: 2.2rem;
  }
  .left-content p {
    width: 100%;
    text-align: center;
  }

  model-viewer {
    margin: 0 auto;
  }

  .contact-form {
    width: 80%;
    max-width: 450px;
  }

  /* CONTACT DETAILS */
  .details-container {
    flex-direction: column;
    align-items: center;
  }

  .left-contact,
  .right-map {
    width: 100%;
  }

  .contact-box {
    width: 100%;
  }
  .center-line{
    margin-top: 80px;
  }
}

/* Mobile - 680px */
@media screen and (max-width: 680px) {
    header {
        width: 90%;
    }

    .header {
        padding: 10px 20px;
        height: auto;
    }

    .logo {
        width: 90px;
        height: auto;
    }

    /* Hide desktop nav */
    .center-nav {
        display: none;
    }

    /* Show burger menu */
    .burger-menu {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .header-icon {
        width: 30px;
    }

    /* Section 1 */
    .section-1 {
        min-height: 80vh;
    }

    .pizza-container {
        width: 320px;
        height: 320px;
    }

    .pizza-text {
        font-size: 180px;
        letter-spacing: 10px;
    }

    .leaf-1 { width: 100px; top: 5%; left: -5%; }
    .leaf-2 { width: 80px; top: 8%; }
    .leaf-3 { width: 110px; right: -5%; }
    .leaf-4 { width: 200px; bottom: 5%; }
    .leaf-5 { width: 150px; }
    .leaf-6 { width: 130px; }
    .leaf-7 { width: 180px; }
    .tomato-1 { width: 180px; top: 12%; }
    .tomato-2 { width: 160px; bottom: 18%; }

    /* Section 2 */
    .section-2 {
        padding: 40px 0;
    }

    .container-2 {
        padding: 30px 15px;
    }

    .bg-leaf-blur {
        width: 150px;
    }

    .pizza-side {
        min-height: 400px;
    }

    .circle-bg {
        width: 350px;
        height: 350px;
    }

    .pizza-placeholder {
        width: 400px;
        height: 400px;
    }

    .content-side {
        padding: 0 15px;
    }

    .pizzapino-title {
        font-size: 60px;
        -webkit-text-stroke: 3px #6A994E;
        filter: drop-shadow(-3px 3px 0px #6A994E);
    }

    .description {
        font-size: 13px;
        line-height: 1.6;
    }

    .read-more-btn {
        padding: 12px 35px;
        font-size: 14px;
    }

    /* Section 3 */
    .section-3 {
        padding: 40px 0;
    }

    .container-3 {
        padding: 20px;
        gap: 40px;
    }

    .section-title {
        font-size: 45px;
        margin-bottom: 80px;
    }

    .pizza-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 400px;
        gap: 60px;
    }

    .pizza-card {
        height: 45vh;
    }

    .pizza-3d-container {
        margin-top: -40px;
        height: 250px;
    }

    .veg-img {
        bottom: -80px;
        width: 75%;
    }

    .pizza-content {
        margin-top: 150px;
        padding: 15px 20px 25px;
    }

    .pizza-name {
        font-size: 36px;
    }

    .try-now-btn {
        padding: 11px 35px;
        font-size: 14px;
    }

    .leaf-left {
        width: 200px;
        bottom: -20%;
        left: -10%;
    }

    .leaf-right {
        width: 110px;
        top: 5%;
    }

    /* Section 4 */
    .sec-4left {
        padding: 30px 20px;
    }

    .sec-4left-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .custmr-rev h1 {
        font-size: 22px;
    }

    .custmr-rev img {
        width: 100px;
    }

    .custmr-rev p {
        font-size: 14px;
    }

    .sec-4right {
        height: 400px;
    }

    .pizza {
        width: 220px;
        height: 220px;
    }

    /* Footer */
    footer {
        margin-top: 60px;
        padding: 0 20px 30px;
    }

    .footer-lines {
        width: 40%;
    }

    .footer-card {
        width: 95%;
        padding: 30px 25px;
    }

    .logo-text {
        font-size: 26px;
    }

    .footer-description,
    .copyright {
        font-size: 12px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 25px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-column a {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .contact-text {
        font-size: 14px;
    }

    .pizza-decoration {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: 10px;
    }


    /* about page */


    .about-text {
        font-size: 120px;
        letter-spacing: 5px;
    }

    .about-pizza-container {
        width: 250px;
        height: 250px;
    }

    /* SEC2 */
    .AB-sec2-left h1 {
        font-size: 32px;
    }

    .AB-sec2-left p {
        font-size: 16px;
    }

    .AB-sec2-right img {
        height: 260px;
    }

    /* SEC3 */
    .ab-sec3-main-title,
    .ab-sec3-sub-title {
        font-size: 32px;
    }

    .ab-sec3-chef-image-container {
        height: 250px;
    }

    .ab-sec3-item {
        height: auto;
        padding: 20px;
        /* width: 450px; */
    }

    /* SEC4 */
    .AB-sec4-left h1 {
        font-size: 32px;
        margin-top: 60px;
    }

    .AB-sec4-left p {
        font-size: 16px;
    }

    .fade-img {
        width: 90%;
    }

    /* SEC5 */
    .ab-sec5 h1 {
        font-size: 28px;
        top: 35%;
        width: 90%;
    }
    .ab-sec3-main-title, .ab-sec3-sub-title {
        font-size: 28px;
    }
    
    .ab-sec3-item {
        height: 300px;
        padding: 20px;
    }
    .ab-sec3-grid {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: center;
        margin-top: 40px;
    }
        .menu-right-box{
        display: none;
        }
           /* HERO */
  .content h1 {
    font-size: 48px;
  }
  .content p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  /* TOP BOXES */
  .top-boxes {
    flex-direction: column;
    align-items: center;
  }

  .box, .sm-box {
    width: 90%;
  }

  /* MAIN AREA STACKED */
  .main-area {
    gap: 40px;
  }

  .left-content h2 {
    font-size: 1.9rem;
  }

  .contact-form {
    width: 100%;
  }
  .center-line{
    margin-top: 80px;
  }

  

}
 /* contact page */

  

