/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2e9e47;
    --dark-green: #1a6b2a;
    --dark-bg: #f5f0e8;
    --darker-bg: #ede8dc;
    --text-light: #1a1a14;
    --text-gray: #5a5a4a;
    --border-color: #d4cfc4;
    --hover-green: #25873c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1a2e1a;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    /* box-shadow: 0 2px 12px #ffffff; */
}

.logo-link{
    text-decoration: none;
    color: inherit;
    display: inline-flex;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    font-weight: 750;
    color: var(--primary-green);
}

.nav-logo .brand-logo{
  width: auto; 
  height: 52px; 
  border-radius: 30px;
  object-fit: cover;
  display: inline-block;
  transform: scale(2);      
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    /* color: var(--text-light); */
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../pages/images/locations/IMG_9286.jpg') center/cover;
    text-align: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #ffd700;
}

.rating i {
    font-size: 18px;
}

.rating span {
    color: #f0f0f0;
    margin-left: 8px;
    font-size: 16px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.hero .highlight {
    color: #6dde85;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 158, 71, 0.35);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.15);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.hero-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.82);
}

.info-item i {
    color: #6dde85;
    font-size: 18px;
}

/* What We Offer Section */
.offers {
    padding: 100px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.offers h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    padding: 40px 20px 20px;
}

.offer-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.menu-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--text-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.tab-btn.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.menu-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.menu-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 158, 71, 0.12);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.menu-item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.menu-item-badges {
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.popular {
    background-color: #ffd700;
    color: #000;
}

.badge.veg {
    background-color: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}

.menu-item-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.menu-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

/* Experience Section */
.experience {
    padding: 120px 0;
    background: url('../images/homepage/unforgattable%20experience.jpg') center 65% / cover no-repeat;
    position: relative;
    text-align: center;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.experience .container {
    position: relative;
    z-index: 1;
}

.experience h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.experience .section-subtitle {
    margin-bottom: 40px;
    color: rgba(255,255,255,0.88);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.highlight {
    color: var(--primary-green);
}

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

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.story-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-light);
}

.story-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.values-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 50px;
}

.values-grid{
  display: grid;
  gap: 30px;
  margin-top: 50px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px){
  .values-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .values-grid{
    grid-template-columns: 1fr;
  }
}

.value-card {
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 25px;
    transition: all 0.3s;
}
.value-card{ position: relative; overflow: hidden; }

.value-card .location-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;     /* CHANGED */
  z-index: 0;
}

.value-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.30);  /* CHANGED */
  z-index: 0;
}

.value-card > *{
  position: relative;
  z-index: 1;
}

.value-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(61, 184, 84, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--primary-green);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white
}

.value-card p {
    /* color: var(--text-gray); */
    color: white;
    font-size: 14px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.gallery-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.gallery-section .section-subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.contact-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 18px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(46,158,71,0.10);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(46, 158, 71, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary-green);
}

.contact-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-light);
}

.contact-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.contact-card p + p {
    margin-top: 6px;
}

.highlight-time {
    color: var(--primary-green);
    font-weight: 600;
}

.social-card {
    text-align: center;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background-color: rgba(46, 158, 71, 0.08);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 17px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.contact-map {
    height: 100%;
    min-height: 260px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-section .social-card .social-links{
    display: flex;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.contact-section .social-card .social-link{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #1a2e1a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #6dde85;
}

.footer-logo .brand-logo{
    width: auto; 
    height: 52px; 
    border-radius: 30px;
    object-fit: cover;
    display: inline-block;
    transform: scale(2);    
}

.footer-about p,
.footer-contact p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #6dde85;
}

.footer-contact i {
    color: #6dde85;
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6dde85;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #ff3b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    color: white;
    transition: all 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
    background-color: #ff5555;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    height: 100%;
    min-height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 50px 40px;
    background-color: #faf8f4;
}

#modalTitle {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-weight: 700;
}

#modalDescription {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.modal-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.modal-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a2e1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 42px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        height: 350px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 400px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }
    .rating {
        gap: 4px;
        margin-bottom: 20px;
    }

    .rating i {
        font-size: 14px;
    }

    .rating span {
        font-size: 12px;
    }

    .hero-info {
        gap: 15px;
    }

    .info-item {
        font-size: 12px;
    }

    .info-item i {
        font-size: 14px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .quote-section {
        padding: 30px 20px;
    }

    .quote-section p {
        font-size: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 10px;
    }

    .modal-info {
        padding: 30px 20px;
    }

    #modalTitle {
        font-size: 24px;
    }

    .modal-price {
        font-size: 28px;
    }
}

/* Value Cards */
.values-section {
    text-align: center;
    margin-top: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, rgba(46, 158, 71, 0.08), var(--darker-bg));
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    border: none;
}

.quote-section p {
    font-size: 28px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.quote-section footer {
    color: var(--primary-green);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
}

/* Info Banner Styles */
.info-banner {
    background-color: var(--darker-bg);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.section-header p {
    color: var(--text-gray);
    font-size: 18px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlights {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
}

.highlight-item i {
    color: var(--primary-green);
    font-size: 20px;
}

.about-image {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured Menu Section */
.featured-menu {
    padding: 100px 0;
    background-color: var(--darker-bg);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.menu-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(46,158,71,0.12);
}

.menu-image {
    height: 200px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 25px;
}

.menu-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.menu-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.menu-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.menu-link:hover {
    color: var(--hover-green);
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background-color: #ffffff;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.social-btn i {
    font-size: 24px;
    color: var(--primary-green);
}

.social-btn:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(46,158,71,0.2);
}

.social-btn:hover i {
    color: white;
}

/* Additional Responsive Adjustments */
@media (max-width: 968px) {
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        margin-top: 40px;
    }

    .values-grid > .value-card:nth-of-type(1) h4{
        margin-bottom: 45px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
    }
    
    .quote-section p {
        font-size: 22px;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 25px;
    }

    .about-header h2{
        line-height: 1.2;
    }

    .about-header h2 .highlight{
        display: block;
        white-space: nowrap;
    }

    .values-grid > .value-card:nth-of-type(1) h4{
        margin-bottom: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .quote-section p {
        font-size: 18px;
    }
    
    .about-image {
        height: 300px;
    }
}

.menu-group-title{
    font-size: 26px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-group-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}