* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    background: #0b0b0b;    
    color: white;
    overflow-x: hidden;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) !important;
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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(11, 11, 11, 0.9);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 50px;
    background-color: rgba(11, 11, 11, 0.95);
    box-shadow: 0 5px 20px rgba(199, 231, 9, 0.1);
}

.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);
}

nav {
    display: flex;
    align-items: center;
}

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: 1100;  
    position: relative;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.container {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    padding: 200px 80px 100px;
    height: 100vh;
    background-image: url('image/fp 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    background-attachment: fixed;
}

.text-section {
    transform: translateY(50px);
}

.text-section h1 {
    font-size: 45px;
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.text-section h1 span {
    color: #c7e709;
    position: relative;
    display: inline-block;
}

.text-section h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #c7e709;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.text-section h1:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.text-section p {
    font-size: 20px;
    line-height: 22px;    
    margin-bottom: 12px;   
    animation: fadeIn 1s ease-out 0.8s both;
}

.order-btn {
    background-color: #c7e709;
    color: #000;
    font-size: 30px;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 231, 9, 0.3);
}

.order-btn:hover::before {
    left: 0;
}

.order-btn:active {
    transform: translateY(-1px);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}

.scroll-indicator::before {
    content: '';
    display: block;
    margin: 0 auto 5px;
    width: 10px;
    height: 20px;
    border: 2px solid #c7e709;
    border-radius: 10px;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% { opacity: 1; height: 20px; }
    50% { opacity: 0.5; height: 30px; }
    100% { opacity: 1; height: 20px; }
}

section {
    margin-top: 1px;
}

/* our story  */
.our-story {
    padding: 140px 80px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('image/our story.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}

.story-content {
    transform: translateX(-50px);
}

.story-image {
    transform: translateX(50px);
}

/* Curvy line for h2 headings */
.our-story h2, 
.testimonials h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 30px;
    top: -70px;
}

.our-story h2::after,
.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M0,6 C50,12 150,0 200,6' stroke='%23c7e709' fill='none' stroke-width='2'/%3E%3C/svg%3E") center bottom no-repeat;
    background-size: 100% 100%;
}

.story-content p {
    position: relative;
    top: -70px;
    font-size: large;
    transition: all 0.5s ease;
    padding: 2px;
    max-width: 60ch;
}

.story-content p:hover {
    transform: translateX(5px);
}

.story-image {
    width: 45%;
    perspective: 1000px;
}

.story-image:hover video {
    transform: rotateY(5deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(199, 231, 9, 0.3);
}

.story-image video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(199, 231, 9, 0.2);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

/* Founder Info Styles */
.founder-info {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-info img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c7e709;
    transition: all 0.3s ease;
}

.founder-info img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(199, 231, 9, 0.3);
}

.founder-info p:first-child {
    font-size: 19px;
    top: 5px;
    margin: 0;
    color: #c7e709;
    font-weight: bold;
}

.founder-info p:last-child {
    font-size: 16px;
    margin: 5px 0 0;
    top: 10px;
    color: white;
}

/* Adjust the our-story section padding if needed */
.our-story {
    padding: 140px 80px 120px;
}

.testimonials {
    padding: 150px 80px;
    background-image: url('image/bg feedback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    background-attachment: fixed;
}

.testimonials h2 {
    transform: translateY(-50px);
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 50%;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.carousel-slide:hover {
    transform: scale(1.02);
}

.carousel-slide img {
    width: 75%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(199, 231, 9, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(199, 231, 9, 0.8);
    border: none;
    font-size: 28px;
    color: #000;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.carousel-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.video-section {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
    margin-top: 1px;    
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-section:hover video {
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.video-bottom-line {
    width: 100%;
    height: 1px;
    background-color: #c7e709;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    animation: expandLine 2s ease-out 1s forwards;
}

@keyframes expandLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.social-icon {
    width: 35px;
    height: 35px;
}

/* Footer Styles */
.site-footer {
    background-color: #0b0b0b;
    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;
    align-items: center;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #c7e709;
    align-items: center;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #c7e709;
    padding-left: 5px;
}

/* Paati Image - Show on desktop */
.footer-section img[src="./image/paati-1.png"] {
    display: block;
    max-width: 220px;
    height: auto;
    margin-top: -170px;
}

.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;
}

/* Menu Page Specific Styles */
.menu-page {
    padding: 150px 50px 50px;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h2 {
    color: #c7e709;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.menu-category h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background-color: #c7e709;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: rgba(20, 20, 20, 0.8);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(199, 231, 9, 0.2);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menu-item h3 {
    color: #c7e709;
    font-size: 22px;
    margin-bottom: 10px;
}

.menu-item p {
    margin-bottom: 15px;
    color: #ccc;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* About Page Specific Styles */
.about-page {
    padding: 150px 50px 50px;
}

.team-section {
    margin-top: 50px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    background: rgba(20, 20, 20, 0.8);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(199, 231, 9, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c7e709;
    margin-bottom: 15px;
}

.team-member h3 {
    color: #c7e709;
    margin-bottom: 5px;
}

.team-member p {
    color: #ccc;
}

/* Contact Page Specific Styles */
.contact-page {
    padding: 150px 50px 50px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    color: white;
    font-family: 'Barlow', sans-serif;
}

.contact-form button {
    background-color: #c7e709;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #b5d400;
}

.map-container {
    margin-top: 50px;
    height: 400px;
    background: #333;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #0b0b0b;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    border: 2px solid #c7e709;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #c7e709;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-title {
    color: #c7e709;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.modal-info {
    margin-bottom: 20px;
}

.modal-info p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.modal-info strong {
    color: #c7e709;
}

.modal-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.modal-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c7e709;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.modal-contact a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(199, 231, 9, 0.4);
}

.modal-contact a i {
    margin-right: 8px;
}

.timing-days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.timing-hours {
    color: #c7e709;
}

/* Mobile Navigation */
.nav-active {
    transform: translateX(0%) !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 150px 40px 80px;
    }
    
    .text-section h1 {
        font-size: 36px;
    }
    
    .text-section p {
        font-size: 18px;
    }
    
    .our-story, .testimonials {
        padding: 100px 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 50px;
        transform: scale(1.5);
    }
    
    /* Hamburger menu styles */
    .hamburger {
        display: block;
        position: relative;
        z-index: 1100;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background-color: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1050;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    
    nav a {
        margin: 15px 0;
        font-size: 20px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    /* Hide quicklinks in footer on mobile */
    .footer-section:first-child {
        display: none;
    }
    
    /* Hide paati image in footer on mobile */
    .footer-section img[src="./image/paati-1.png"] {
        display: none;
    }
    
    .container {
        padding: 120px 20px 60px;
        text-align: center;
        justify-content: center;
        background-image: url('image/mobile-bg.jpg');
        background-attachment: scroll;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .text-section h1 {
        font-size: 28px;
    }
    
    .text-section p {
        font-size: 16px;
    }
    
    .order-btn {
        font-size: 20px;
        padding: 8px 20px;
    }
    
    .our-story, .testimonials {
        padding: 60px 20px;
        flex-direction: column;
    }
    
    .story-content, .story-image {
        width: 100%;
        transform: none !important;
    }
    
    .story-image {
        margin-top: 30px;
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .video-section {
        height: 50vh;
    }
    
    .menu-page, .about-page, .contact-page {
        padding: 120px 20px 30px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Hamburger animation */
    .hamburger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.toggle .line2 {
        opacity: 0;
    }
    .hamburger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 480px) {
    nav a {
        margin: 15px 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(199, 231, 9, 0.2);
    }
    
    .text-section h1 {
        font-size: 24px;
    }
    
    .order-btn {
        font-size: 18px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-section ul li {
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
} 
/* New button Style */

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.view-menu-btn {
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    color: #c7e709;
    font-size: 25px;
    padding: 10px 25px;
    border: 2px solid #c7e709;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.view-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(199, 231, 9, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.view-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 231, 9, 0.3);
    background-color: rgba(199, 231, 9, 0.1);
}

.view-menu-btn:hover::before {
    left: 0;
}

.view-menu-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .view-menu-btn, .order-btn {
        width: 100%;
        font-size: 20px;
    }
}


.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);
}
