* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    background: #545454;
    color: white;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    height: auto;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 50px;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 5px 20px rgba(199, 231, 9, 0.1);
}

body.menu-open header {
    background-color: rgba(18, 18, 18, 1);
    box-shadow: none;
}

.logo img {
    height: 75px;
    transform: scale(2);
    transform-origin: left center;
    transition: all 0.5s ease;
}

header.scrolled .logo img {
    transform: scale(1.5) translateX(10px);
}

/* Navigation */
nav {
    display: flex;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #c7e709;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #c7e709;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav-container {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    padding: 20px 0;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-container.active {
    display: block;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #c7e709;
    background-color: rgba(199, 231, 9, 0.1);
}

.mobile-contact-info {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.mobile-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-contact-info i {
    margin-right: 10px;
    color: #c7e709;
}

/* Hamburger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* About Page Specific Styles */
.about-page {
    padding: 150px 50px 50px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 48px;
    color: #c7e709;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #c7e709;
}

.about-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-image {
    width: 90%;
    height: 300px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cuisine-section {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 800px;
}

.cuisine-section h2 {
    color: #c7e709;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.cuisine-section p {
    line-height: 1.8;
    text-align: justify;
}

.mission {
    padding: 30px;
    margin: 60px auto;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    max-width: 800px;
}

.mission:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(199, 231, 9, 0.2);
}

.mission h2 {
    color: #c7e709;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #c7e709;
}

/* Footer Styles */
.site-footer {
    background-color: #121212;
    color: white;
    padding: 60px 0 20px;
    border-top: 2px solid #c7e709;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #c7e709;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #c7e709;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #c7e709;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #c7e709;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        height: 80px;
    }
    
    .logo img {
        height: 50px;
        transform: scale(1.5);
    }
    
    header.scrolled .logo img {
        transform: scale(1.2);
    }
    
    nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .mobile-nav-container {
        top: 80px;
    }
    
    .about-page {
        padding: 120px 20px 30px;
    }
    
    .about-header h1 {
        font-size: 36px;
    }
    
    .cuisine-section {
        padding: 20px;
    }
    
    .mission {
        margin: 30px 0;
        padding: 20px;
    }
    
    /* Footer Responsive */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    /* Hide Quick Links on mobile */
    .footer-section:first-child {
        display: none;
    }
    
    /* Hide Paati image on mobile */
    .footer-section:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-nav-container {
        top: 70px;
    }
    
    .logo img {
        height: 40px;
        transform: scale(1.3);
    }
    
    header.scrolled .logo img {
        transform: scale(1.1);
    }
    
    .mobile-nav a {
        font-size: 16px;
        padding: 10px 15px;
    }
    
    .about-header h1 {
        font-size: 28px;
    }
    
    .story-image {
        height: 200px;
    }
}

.site-by {
  display: flex;
  align-items: center;
  justify-content: center; /* or 'flex-start' depending on layout */
  gap: 10px;
  font-size: 16px;
  color: #ffffff; /* change to match your footer text color */
  margin-top: 20px;
}

.site-by p {
  margin: 0;
  font-weight: 500;
}

.site-by a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.company-icon {
  height: 24px; /* adjust as needed */
  width: auto;
  transition: transform 0.3s ease;
}

.company-icon:hover {
  transform: scale(1.1);
}
