/* ===== style.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 0.95;
}
.hero-content .warning {
    font-weight: 600    ;
    color: red;
}

.hero button {
    background: #f97316;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.hero button:hover {
    background: #e85d0e;
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5);
}

.hero button:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: #f8eddd;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.about h2 {
    font-size: 36px;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f97316;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.8;
    font-weight: 300;
    
    padding: 25px 30px;
    border-radius: 16px;
   
}

/* ===== SPECIALITIES SECTION ===== */
.specialities {
    padding: 30px 20px;
    text-align: center;
    background: #f6f2e8;
}

.specialities h2 {
    font-size: 36px;
    color: #1b5e20;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.specialities h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f97316;
    margin: 10px auto 0;
    border-radius: 2px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 20px 20px 30px;
    border-radius: 24px;
    width: 300px;
    max-width: 100%;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(2px);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 40px -12px rgba(0,0,0,0.25);
}

.card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.03);
}

.card h3 {
    color: #1b5e20;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
}

.card p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}
.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantages-list li {
    font-size: 16px;
    color: #4a5568;
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
    line-height: 1.9;
}

.advantages-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
}
/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, #0f3b0f, #2d6a2d);
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f97316;
    margin: 10px auto 0;
    border-radius: 2px;
}

.visit {
    margin-bottom: 40px;
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid div {
    text-align: center;
    max-width: 220px;
    
    padding: 25px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
   
    transition: transform 0.3s ease;
}

.contact-grid div:hover {
    transform: translateY(-5px);
 
}

.contact i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    color: #f6f2e8;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.contact-grid h4 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.contact-grid p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
    background: #0a1a0a;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-top: 1px solid #2d4a2d;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero button {
        padding: 12px 28px;
        font-size: 16px;
    }

    .about h2,
    .specialities h2,
    .contact h2 {
        font-size: 30px;
    }

    .about p {
        font-size: 16px;
        padding: 20px;
    }

    .cards {
        gap: 25px;
    }

    .card {
        width: 90%;
        max-width: 350px;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-grid div {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero button {
        font-size: 15px;
        padding: 10px 24px;
    }

    .about p {
        font-size: 15px;
        padding: 18px;
    }

    .contact-grid div {
        padding: 20px 10px;
    }

    .contact i {
        font-size: 34px;
    }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
:focus-visible {
    outline: 3px solid #f97316;
    outline-offset: 4px;
    border-radius: 4px;
}




/* ===== NAVBAR ===== */

.navbar{
position: fixed;
top:0;
width:100%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:1000;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:1px 20px;
}


.logo img{
height:90px;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:#f97316;
}

.order-btn{
background:#f97316;
border:none;
padding:10px 22px;
border-radius:30px;
color:white;
font-weight:600;
cursor:pointer;
}

.order-btn:hover{
background:#e85d0e;
}


/* ===== GALLERY ===== */

.gallery{
padding:30px 20px;
background:#f8eddd;
text-align:center;
}

.gallery h2{
  font-size: 36px;
    color: #1b5e20;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.gallery h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f97316;
    margin: 10px auto 0;
    border-radius: 2px;
}

.gallery-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
transition:0.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

.hero{
margin-top:90px;
}


.contact a {
    text-decoration: none;
    color: white;
}

section{
scroll-margin-top:90px;
}


/* ===== MOBILE NAVBAR ===== */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
color:#1b5e20;
}

@media (max-width:768px){

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
gap:20px;
padding:25px 0;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
display:none;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
font-size:26px;
cursor:pointer;
color:#1b5e20;
}

.order-btn{
padding:8px 18px;
font-size:14px;
}

}



.nav-actions{
display:flex;
align-items:center;
gap:15px;
}

.nav-phone{
text-decoration:none;
color:#1b5e20;
font-weight:500;
font-size:15px;
display:flex;
align-items:center;
gap:6px;
}

.nav-phone i{
color:#f97316;
font-size:18px;
}

.nav-phone:hover{
color:#f97316;
}

@media (max-width:768px){

.nav-phone span{
display:none;
}

.nav-phone{
font-size:18px;
}

}



/* ===============================
   IDLI CULTURE SECTION
================================*/

.idli-culture{
  padding:60px 100px;
  background:#fff8f0;
  text-align:center;
}

/* Section Heading */
.idli-culture h2{
  font-size:36px;
  color:#1b5e20;
  margin-bottom:30px;
  font-weight:600;
  position:relative;
  display:inline-block;
}

.idli-culture h2::after{
  content:'';
  display:block;
  width:60px;
  height:3px;
  background:#f97316;
  margin:10px auto 0;
  border-radius:2px;
}

/* Container */
.culture-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
}

/* Text Content */
.culture-text{
  flex:1;
  min-width:300px;
}

.culture-text p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:15px;
  color:#444;
  text-align:left;
}

/* Image Section */
.culture-image{
  flex:1;
  min-width:300px;
}

.culture-image img{
  width:100%;
  max-width:500px;
  border-radius:12px;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image Hover Effect */
.culture-image img:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ===============================
   TABLET RESPONSIVE
================================*/

@media (max-width:992px){

  .idli-culture{
    padding:50px 40px;
  }

  .culture-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .culture-text p{
    text-align:center;
  }

  .culture-image img{
    max-width:450px;
  }

}

/* ===============================
   MOBILE RESPONSIVE
================================*/

@media (max-width:600px){

  .idli-culture{
    padding:40px 20px;
  }

  .idli-culture h2{
    font-size:28px;
  }

  .culture-text p{
    font-size:15px;
    line-height:1.6;
  }

  .culture-container{
    gap:25px;
  }

  .culture-image img{
    width:100%;
    max-width:100%;
    border-radius:10px;
  }

}