/* --- Global Styles & Variables --- */
:root {
    --primary-color: #E67E22;
    --dark-color: #2C3E50;
    --light-color: #FDFEFE;
    --text-color: #34495E;
    --rustic-bg: #F5EFE6;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 70px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--rustic-bg);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 3rem 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--dark-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #D35400;
    transform: translateY(-3px);
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-color);
}

/* --- Navbar & Hero Styles --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
    background-color: transparent;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.nav-link.active-link {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar.scrolled {
    background-color: var(--dark-color);
    box-shadow: 0 2px 10px #ffffff1a;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.nav-logo img {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-color);
    transition: all 0.3s ease-in-out;
}


/* HERO */
.hero {
    position: relative;
    height: 82vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, .3), rgba(0, 0, 0, .7));
    z-index: 1
}

.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* full hero height */
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    text-align: center;
    flex-direction: column;
    z-index: 2;
    /* above overlay */
    color: #fff;
    padding: 20px;
}

.hero-badge {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    /* Big luxury font */
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-family: 'Poppins', sans-serif;
}





.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.feature-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

/* Icon specific colors from the image */
.icon-kitchen {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
}

.icon-music {
    background: linear-gradient(45deg, #8a2be2, #4a00e0);
}

.icon-luxury {
    background: linear-gradient(45deg, #ffd700, #f0ac00);
}

.icon-pets {
    background: linear-gradient(45deg, #8b4513, #5d2b00);
}




/* Three Vision Cards Styling */
.vision-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.vision-card {
    background-color: #161615;
    color: white;
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: #ee9734;
    /* Using the same gold color for consistency */
    background-color: #db7f15;
}

.vision-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vision-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
}

.vision-card p {
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

.vision-icon {
    font-size: 1.5rem;
}

/* Card specific icon colors */
.icon-vision {
    color: #8a2be2;
}

/* Purple */
.vision-icon {
    color: #ffffff;
}

.icon-star {
    color: #ffd700;
}

/* Gold/Yellow */




/* --- Experience Section Styles --- */
.experience-feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.experience-feature:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-gallery {
    flex: 1;
    min-width: 300px;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 120px);
}

.experience-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-gallery img:hover {
    transform: scale(1.05);
}

.experience-gallery img:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.experience-gallery img:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.experience-gallery img:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.experience-text {
    flex: 1;
    min-width: 300px;
}

.experience-text h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.experience-text h4 {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}


.menu-section {
    background-color: var(--light-color);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tab-button {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 20px;
    border: 2px solid var(--rustic-bg);
    background-color: var(--rustic-bg);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: #e9e0d3;
    border-color: #e9e0d3;
}

.tab-button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}




.bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image with blur */
.bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("src/img/restaurant-bg.jpg") no-repeat center center/cover;
  filter: blur(3px);
  transform: scale(1.1); /* avoids sharp edges after blur */
  z-index: -1;
}

/* Make content stay clear above blur */
.bg > * {
  position: relative;
  z-index: 1;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background-color: #f5d292;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}
.contact-form h2{
    font-weight: bold;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: black;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

#form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.success {
    color: green;
}

.error {
    color: red;
}

/* --- Footer Styles --- */
.site-footer {
    background-color: var(--dark-color);
    color: #edf3f7;
    padding-top: 3rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-logo {
    width: 100px;
    background: var(--light-color);
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 1rem;
}

.site-footer h4 {
    font-family: var(--font-heading);
    color: orange;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: #fcfeff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p i {
    margin-right: 10px;
}

.footer-social a {
    color: #ecf1f5;
    font-size: 1.5rem;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid  #1d1d1d;;
}

/* --- Animations & Responsive Design --- */
.fade-in {
    animation: fadeIn 1.5s ease-in-out forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: #1d1d1d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #4d5b69;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .promise-content {
        flex-direction: column;
    }

    .experience-feature,
    .experience-feature:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }

    .experience-gallery {
        grid-template-rows: repeat(2, 150px);
    }

    .experience-text {
        text-align: center;
    }
}

.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 9999;
    overflow-y: auto;
    padding-top: 50px;
}

.panel-content {
    background: #fffbea;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 25px;
    animation: slideDown 0.4s ease;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.panel-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #ff6f61;
}

#panel-title {
    text-align: center;
    color: #faa508;
    margin-bottom: 20px;
}

#panel-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dish-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e6e4df;
    padding: 10px 15px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.dish-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.dish-item img {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
    object-fit: cover;
}

.dish-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dish-info span:first-child {
    font-weight: 600;
    color: #080808;
    font-size: 16px;
}

.dish-info span:last-child {
    color: #555;
    font-size: 14px;
}
/* =======================
   MENU GRID & CARDS
======================= */

/* Grid layout: first row 3 cards, second row 2 centered */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
    gap: 18px;
    margin-top: 24px;
    width: 100%;
    padding: 0 24px; 
}
#menu {
    padding-bottom: 80px; /* Adjust this value to get the space you want */
}

/* Transparent menu cards */
.menu-card {
    background: rgba(0, 0, 0, 0.5); /* semi-transparent dark background */
    color: #f8eeee;                /* white text for contrast */
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

/* Images inside card */
.menu-card img {
    width: 50%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}

/* Text */
.menu-card h1,
.menu-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.menu-card p {
    font-size: 12px;
    margin: 0;
}

/* Hover effect */
.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Center last card in 2nd row */
.menu-card:nth-child(6) {
    grid-column: 3; /* Centers 6th card in 3rd column */
}

/* =======================
   BACKGROUND & WRAP
======================= */

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 48px 20px;
}

/* Background video styling */
.menu-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Wrap content should overlay video */
#menu .wrap {
    position: relative;
    z-index: 1;
    color: #fff;          /* white text for readability */
    text-align: center;
    padding: 80px 20px;
}

/* Adjust headings and text */
#menu h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ffd369;
}

#menu p.lead {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* =======================
   ANIMATIONS
======================= */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =======================
   RESPONSIVE DESIGN
======================= */

/* Tablets */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-card:nth-child(6) {
        grid-column: auto; /* reset centering for smaller screens */
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr; /* 1 column */
    }
    .menu-card img {
        height: 160px;
        width: 120px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    #menu {
        padding: 40px 10px;
    }
    .panel-content {
        width: 95%;
        padding: 20px;
    }
    #menu h2 {
        font-size: 1.6rem;
    }
    #menu .lead {
        font-size: 0.9rem;
    }
}

.gallery-section {
  padding: 2rem;
  background: #111;
  color: #fff;
  text-align: center;
}

.gallery-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Masonry Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 10px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay on Hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  color: #ff6a2a;
}

/* Full Page Effect */
#gallery {
  min-height: 100vh; /* Full page height */
}





/* =================================
   New About Raka Section Styles
==================================== */

/* --- About Us Page Specific Styles --- */

.about-hero {
    position: relative;
    height: 100vh; /* Shorter than the main hero */
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    background: url('src/img/aboutbg.jpg') no-repeat center center/cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero .container {
    position: relative; /* To stay above the overlay */
    z-index: 2;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-page-image img {
    max-width: 100%; /* Use max-width to prevent overflow */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Removes potential bottom space under the image */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.about-gallery-grid .gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-gallery-grid .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.about-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    /* This adds the rotation and transition effect */
    transform: rotate();
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-wrapper:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    /* This adds the rounded corners and shadow */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#aboutus {
    padding: 80px 20px;
    background-color:var(--rustic-bg); /* This ensures the white background from Image 1 */
}

/* This is the KEY! It creates the side-by-side layout. */
.about-raka-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap; /* Allows it to stack on smaller screens */
}

/* The left column with the text */
.about-content {
    flex: 1; /* Allows the column to grow and shrink */
    min-width: 300px;
    max-width: 550px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}
/* Responsive adjustments for the new page */
@media (max-width: 992px) {
    .about-page-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-page-grid.reverse-grid {
        /* On mobile, stack image on top of text */
        grid-template-areas: "image" "content";
    }
    .about-page-grid .about-page-image {
        grid-area: image; /* For the reverse-grid layout */
        margin-bottom: 2rem;
    }
     .about-page-grid .about-page-content {
        grid-area: content; /* For the reverse-grid layout */
    }
    .about-page-grid .section-title {
        text-align: center;
    }
}
/* ===================================
   Responsive Enhancements for About.php
   =================================== */

/* --- For Tablets and Smaller (under 992px) --- */
@media (max-width: 992px) {
    .about-page-grid {
        gap: 2.5rem; /* Reduces the large gap between image and text on tablets */
        margin-bottom: 4rem;
    }

    .about-hero-title {
        font-size: 3rem; /* Slightly reduce hero title size on tablets */
    }
}


/* --- For Mobile Devices (under 768px) --- */
@media (max-width: 768px) {
    .about-hero {
        height: 40vh; /* Make the hero section shorter on mobile */
        min-height: 300px;
    }

    .about-hero-title {
        font-size: 2.5rem; /* Further reduce hero title for mobile readability */
        line-height: 1.2;
    }

    .about-hero-subtitle {
        font-size: 1.1rem; /* Adjust subtitle size */
    }

    .about-page-grid {
        gap: 2rem; /* Further reduce the gap for a tighter mobile layout */
        margin-bottom: 3rem;
    }

    .about-page-image {
        /* The existing rule already handles stacking, this is just a reminder */
        margin-bottom: 1.5rem;
    }
    
    .about-gallery-grid {
        gap: 1rem; /* Reduce the gap between gallery images on mobile */
    }
}


/* --- For Small Mobile Devices (under 480px) --- */
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.1rem; /* Make the title even smaller on the smallest screens */
    }

    .container {
        /* Reduces the default side padding on very narrow screens */
        padding-left: 1rem;
        padding-right: 1rem;
    }
}