/*--------------------------------------------------------------
# About-Inner Content (Your Exact Specific Design)
--------------------------------------------------------------*/

/* Wrapper */
.about-inner {
  padding-right: 20px; 
}

/* Center aligning the Main Title */
.about-inner .section-title {
  text-align: center;
}

/* Updated Your H3 Code mapping perfectly to .title2 + Centered */
.about-inner .title2 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}

/* Making sure paragraph matches your exact logic */
.about-inner p {
  font-size: 21px;
  line-height: 1.6;
  text-align: center;
}

.about-inner p:last-child {
  margin-bottom: 0;
}

/* ========================================================== */
/* Extras preserved exactly from your CSS (Just in case you   */
/* want to use lists or read-more button inside .about-inner) */
/* ========================================================== */

.about-inner ul {
  list-style: none;
  padding: 0;
}

.about-inner ul li {
  padding-left: 28px;
  position: relative;
  font-size: 19px;
  font-weight: 500;
}

.about-inner ul li+li {
  margin-top: 10px;
}

.about-inner ul em {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #fcb53b; /* UPDATED ACCENT COLOR */
  line-height: 1;
}

.about-inner .btn-learn-more {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #fcb53b; /* UPDATED ACCENT COLOR */
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #fcb53b; /* UPDATED ACCENT COLOR */
  text-decoration: none;
}

.about-inner .btn-learn-more:hover {
  background: #fcb53b; /* UPDATED ACCENT COLOR */
  color: #1e807c; /* UPDATED PRIMARY COLOR FOR BETTER CONTRAST */
  text-decoration: none;
}

/* Your original media query purely focused on the inner content */
@media (max-width: 991.98px) {
  .about-inner {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

/* ===================================================================
   --- 1. UNIQUE AMENITIES SECTION ---
   =================================================================== */

.amenities-unique {
  position: relative;
  padding: 10px 20px; 
  overflow: hidden;
  animation: gradientShift 12s ease infinite;
}

.amenities-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.amenity-item:hover {
  transform: translateY(-12px) scale(1.02);
  border-top: 4px solid #fcb53b; /* UPDATED ACCENT COLOR */
  box-shadow: 0 20px 45px rgba(30, 128, 124, 0.2); /* UPDATED PRIMARY COLOR SHADOW */
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fcb53b; /* UPDATED ACCENT COLOR */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #000000;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  background: #1e807c; /* UPDATED PRIMARY COLOR */
  color: #fff;
  box-shadow: 0 0 25px rgba(252, 181, 59, 0.6); /* UPDATED ACCENT COLOR GLOW */
}

.amenity-item h2 {
  font-size: 1.4rem;
  color: #000000 !important;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.amenity-item p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
}

/* Background decorative overlay */
.amenities-unique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(252, 181, 59, 0.1); /* UPDATED ACCENT COLOR */
  border-radius: 50%;
  z-index: 0;
}

.amenities-unique::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(252, 181, 59, 0.15); /* UPDATED ACCENT COLOR */
  border-radius: 50%;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== Responsive for Unique Amenities ===== */
@media (max-width: 992px) {
    .amenities-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .amenities-grid-page {
        grid-template-columns: 1fr;
    }
    .amenity-item h3 {
        font-size: 1.2rem;
    }
    .amenity-item {
        padding: 30px 20px;
    }
}

/* ===================================================================
   --- 2. ROOM AMENITIES SHOWCASE ---
   =================================================================== */

.room-amenities-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.room-amenities-section h2 {
    font-size: 3em;
    color: #1e807c; /* UPDATED PRIMARY COLOR */
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.room-amenities-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #fcb53b; /* UPDATED ACCENT COLOR */
}

.room-amenities-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.room-amenities-column {
    flex: 1;
    max-width: 250px;
}

.room-amenities-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-amenities-column li {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 25px;
}

.room-amenities-column.left {
    text-align: right;
}

.room-amenities-column.right {
    text-align: left;
}

.room-amenities-image-container {
   flex-shrink: 0;
}

.room-amenities-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .room-amenities-section h2 {
        font-size: 2.2em;
    }
    .room-amenities-layout {
        gap: 30px;
        flex-direction: column;
    }
    .room-amenities-image {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }
    .room-amenities-column {
        max-width: 100%;
        text-align: center !important;
    }
    .room-amenities-column li {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    .room-amenities-layout .room-amenities-column.left {
        order: 1;
    }
    .room-amenities-layout .room-amenities-image-container {
        order: 2;
    }
     .room-amenities-layout .room-amenities-column.right {
        order: 3;
    }
}

/* =================================================================
   1. STYLES FOR THE "ATTRACTIONS" SECTION
   ================================================================= */

.New-attraction-app-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: -50px;
}

.New-attraction-attraction-quality-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .New-attraction-attraction-quality-cards {
        grid-template-columns: repeat(6, 1fr);
    }
    .New-attraction-card:nth-child(-n+3) {
        grid-column: span 2;
    }
    .New-attraction-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    .New-attraction-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.New-attraction-card {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.New-attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(252, 181, 59, 0.1); /* UPDATED ACCENT COLOR SHADOW */
}

.New-attraction-card-image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.New-attraction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.New-attraction-card:hover .New-attraction-card-image {
    transform: scale(1.05);
}

.New-attraction-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.New-attraction-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e807c; /* UPDATED PRIMARY COLOR */
}

.New-attraction-card-description {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.New-attraction-card-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
}

.New-attraction-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.New-attraction-card-details li + li {
    margin-top: 0.75rem;
}

.New-attraction-card-details i {
    color: #fcb53b; /* UPDATED ACCENT COLOR */
    font-size: 16px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.New-attraction-card-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.New-attraction-card-details a:hover {
    color: #fcb53b; /* UPDATED ACCENT COLOR */
}


/* =================================================================
   3. LOCATION SECTION
   ================================================================= */
.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: white;
}
.location-title {
    text-align: center;
    color: #1e807c; /* UPDATED PRIMARY COLOR */
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}
.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #fcb53b; /* UPDATED ACCENT COLOR */
}
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch;
}
.location-info {
    flex: 1;
    min-width: 300px;
}
.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(30, 128, 124, 0.1); /* UPDATED PRIMARY COLOR SHADOW */
    border: 1px solid rgba(30, 128, 124, 0.1); /* UPDATED PRIMARY COLOR BORDER */
}
.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1e807c; /* UPDATED PRIMARY COLOR */
}
.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}
.coordinate i {
    color: #fcb53b; /* UPDATED ACCENT COLOR */
    font-size: 1.2rem;
}
.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(30, 128, 124, 0.1); /* UPDATED PRIMARY COLOR SHADOW */
    border: 1px solid rgba(30, 128, 124, 0.1); /* UPDATED PRIMARY COLOR BORDER */
}
.directions-form label {
    color: #1e807c; /* UPDATED PRIMARY COLOR */
    text-align: left;
}
.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.directions-form input:focus {
    outline: none;
    border-color: #1e807c; /* UPDATED PRIMARY COLOR */
    box-shadow: 0 0 0 3px rgba(30, 128, 124, 0.2); /* UPDATED PRIMARY COLOR SHADOW */
}
.directions-form button {
    background: #1e807c; /* UPDATED PRIMARY COLOR */
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.directions-form button:hover {
    background: #fcb53b; /* UPDATED ACCENT COLOR */
    color: black;
    transform: translateY(-2px);
}
.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(30, 128, 124, 0.1); /* UPDATED PRIMARY COLOR SHADOW */
    border: 1px solid rgba(30, 128, 124, 0.1); /* UPDATED PRIMARY COLOR BORDER */
    transition: transform 0.3s ease;
}
.location-map:hover {
    transform: translateY(-5px);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    .location-info, .location-map {
      width: 100%;
    }
}


/* =================================================================
   4. CONTACT SECTION
   ================================================================= */
.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
}
.contact-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: auto;
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-card h2 {
    color: #1e807c; /* UPDATED PRIMARY COLOR */
    margin-bottom: 25px;
    position: relative;
}
.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fcb53b; /* UPDATED ACCENT COLOR */
}
.info-item {
    display: flex;
    align-items: flex-start;
}
.info-item em {
    color: #fcb53b; /* UPDATED ACCENT COLOR */
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 25px;
}
.info-text .title {
    margin-bottom: 5px;
    color: #1e807c; /* UPDATED PRIMARY COLOR */
}
.info-text p, .info-text a {
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
    font-weight: 500;
}
.info-text a:hover {
    color: #1e807c; /* UPDATED PRIMARY COLOR */
}
.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    .map-container {
        height: 350px;
    }
}


/* =================================================================
   5. HOTEL NAVIGATION SECTION
   ================================================================= */
#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}
#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}
#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1e807c; /* UPDATED PRIMARY COLOR */
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #fcb53b; /* UPDATED ACCENT COLOR */
    height: 120px;
}
#hotel-navigation-section .nav-link:hover {
    background: #1e807c; /* UPDATED PRIMARY COLOR */
    color: white;
    box-shadow: 0 8px 16px rgba(30, 128, 124, 0.2); /* UPDATED PRIMARY COLOR SHADOW */
    transform: translateY(-3px);
}
#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fcb53b; /* UPDATED ACCENT COLOR */
    transition: all 0.3s ease;
}
#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}
#hotel-navigation-section .nav-text {
    margin-bottom: 5px;
}
#hotel-navigation-section .nav-desc {
    opacity: 0.8;
}
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}
@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    #hotel-navigation-section {
        padding: 30px 0;
    }
}


/* =================================================================
   6. FAQ SECTION
   ================================================================= */
.faq-section {
    margin: 20px auto;
    padding: 0 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-header h2 {
    color: #1e807c; /* UPDATED PRIMARY COLOR */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1e807c, #fcb53b); /* UPDATED GRADIENT */
    border-radius: 2px;
}
.faq-header p {
    color: black;
    max-width: 700px;
    margin: 0 auto;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}
.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #1e807c; /* UPDATED PRIMARY COLOR */
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}
.faq-icon {
    width: 40px;
    height: 40px;
    background: #fcb53b; /* UPDATED ACCENT COLOR */
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}
.faq-question-text {
    color: #333;
}
.faq-answer {
    padding: 25px;
    position: relative;
}
.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #1e807c, transparent); /* UPDATED PRIMARY COLOR */
}
.faq-answer p {
    margin: 0;
    color: #555;
}
.faq-answer a {
    color: #1e807c; /* UPDATED PRIMARY COLOR */
    text-decoration: none !important;
}
.faq-answer a:hover {
    color: #fcb53b; /* UPDATED ACCENT COLOR */
    border-bottom-color: #fcb53b; /* UPDATED ACCENT COLOR */
}
.faq-answer .fa-caret-right {
    color: #fcb53b; /* UPDATED ACCENT COLOR */
    margin-right: 8px;
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question, .faq-answer {
        padding: 20px;
    }
}



 /* ====== Gallery and Lightbox ====== */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden; 
    opacity: 0;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active #lightbox-img {
    transform: scale(1);
}

#lightbox-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    transition: opacity 0.4s ease-in-out;
    max-width: 80vw;
}

.close-btn, .prev-btn, .next-btn {
    position: absolute;
    color: white;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    transition: color 0.2s ease;
}

.close-btn:hover, .prev-btn:hover, .next-btn:hover {
    color: #bbb;
}

.close-btn {
    top: 20px;
    right: 35px;
    font-size: 40px;
}

.prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    padding: 16px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
        margin: 20px auto;
    }
    
    #lightbox-img {
        max-width: 95vw;
        max-height: 75vh;
    }
    
    .close-btn {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
    
    .prev-btn, .next-btn {
        font-size: 24px;
        padding: 10px;
    }
    
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
    
    #lightbox-caption {
        font-size: 1em;
    }
}