/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f7f7;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Selection Color */
::selection {
    background-color: #0ea5e9;
    color: white;
}

/* Hero Section */
.hero-background {
    background: linear-gradient(135deg, #0f3956 0%, #155e75 50%, #f472b6 100%);
    height: 80vh;
    min-height: 500px;
    position: relative;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #38bdf8;
    margin: 8px auto 0;
    border-radius: 9999px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 50px; }
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Room Grid */
@media (min-width: 1024px) {
    .room-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
    max-height: 400px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Hover Effect */
.gallery-item {
    position: relative;
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
    background-color: white;
    border-radius: 0.75rem; /* 12px */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    aspect-ratio: 1 / 1; /* Make it square */
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.gallery-item img {
    transition: transform 0.5s ease;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Room Card Hover */
.room-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(244, 114, 182, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.room-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.25);
}

.room-card:hover::before {
    opacity: 1;
}

.room-card img {
    transition: transform 0.4s ease;
}

.room-card:hover img {
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0ea5e9;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background-color: #0284c7;
    transform: translateY(-5px);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

/* Enhanced Navbar Styles */
nav {
    transition: all 0.3s ease;
}

nav .nav-link {
    position: relative;
}

nav .nav-link span {
    position: relative;
    z-index: 1;
}

/* Logo Animation */
nav a[href="#home"] .w-12 {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav a[href="#home"]:hover .w-12 {
    transform: rotate(5deg) scale(1.1);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Active Nav Link */
.nav-link.active {
    color: #0ea5e9;
    background-color: rgba(14, 165, 233, 0.1);
}

/* Mobile Menu Animation */
.mobile-menu {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Book Now Button Pulse */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(14, 165, 233, 0.6);
    }
}

nav a[href="#booking"] {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Feature Cards */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Testimonial Slider */
.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #0ea5e9, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth Image Loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0ea5e9, #0284c7);
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0284c7, #0369a1);
}

/* Responsive Typography */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-background {
        min-height: 500px;
        height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1.125rem !important;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .gallery-item img {
        height: 100%;
        object-fit: cover;
    }
    
    .room-card {
        margin-bottom: 1rem;
    }
    
    .lightbox-nav {
        font-size: 30px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        right: 20px;
        font-size: 30px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    
    .hero-content h1 {
        font-size: 3.5rem !important;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1440px) {
    section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover::before,
    .gallery-item:hover::after {
        opacity: 0;
    }
    
    .gallery-item:active::before,
    .gallery-item:active::after {
        opacity: 1;
    }
    
    .room-card:hover {
        transform: none;
    }
    
    .room-card:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    nav, .back-to-top, .lightbox, #booking {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
}

/* Booking Form Enhancement */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
}

/* Stats Counter */
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0ea5e9;
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Social Icons */
.social-icon {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

/* Footer Enhancements */
footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.5), transparent);
}

.footer-link {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ea5e9;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #0ea5e9;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    color: #0ea5e9;
}


/* Additional Responsive Enhancements */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575px) {
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    .hero-content .flex {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-content a {
        width: 100%;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.25rem !important;
    }
    
    .room-card {
        margin-bottom: 1.5rem;
    }
    
    footer .grid {
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .gallery-item {
        height: 180px;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 4rem !important;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 4.5rem !important;
    }
    
    .container-custom {
        max-width: 1320px;
        margin: 0 auto;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-background {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Footer Responsive Adjustments */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 2rem;
    }
    
    footer .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    footer .contact-item {
        justify-content: center;
    }
    
    footer .footer-link {
        display: inline-block;
    }
    
    footer .social-icon {
        margin: 0 0.5rem;
    }
    
    #newsletter-form {
        padding: 0 1rem;
    }
    
    #newsletter-form input {
        width: 100%;
    }
}

/* Booking Form Responsive */
@media (max-width: 640px) {
    #booking-form {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    #booking-form .sm\:col-span-1 {
        grid-column: span 1;
    }
    
    #booking-form button {
        margin-top: 0.5rem;
    }
}

/* Navigation Responsive */
@media (max-width: 768px) {
    nav .max-w-7xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .mobile-menu {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

/* Stats Section Responsive */
@media (max-width: 640px) {
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-number + p {
        font-size: 0.75rem;
    }
}

/* Dining Section Responsive */
@media (max-width: 768px) {
    #dining .grid {
        grid-template-columns: 1fr;
    }
    
    #dining img {
        order: -1;
        margin-bottom: 2rem;
    }
}

/* About Section Responsive */
@media (max-width: 768px) {
    #about .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Utility Classes for Responsive */
.hide-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .show-mobile {
        display: block;
    }
}

/* Smooth Transitions for Responsive Changes */
* {
    transition-property: padding, margin, font-size;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Prevent transitions on page load */
.preload * {
    transition: none !important;
}

/* Hero Section with Background Slider */
.hero-section {
    color: white;
    text-align: center;
    padding: 150px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
        padding: 100px 20px;
    }
    
    .hero-content {
        padding: 10px;
    }
}

/* Enhanced Dining Section Styles */
#dining {
    position: relative;
    overflow: hidden;
}

#dining::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#dining::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Dining Feature Cards */
.dining-feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.dining-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.dining-feature-card:hover::before {
    left: 100%;
}

.dining-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Menu Highlights Animation */
.menu-highlight-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-highlight-icon:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Dining Images Hover Effect */
#dining img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#dining img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(251, 191, 36, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

#dining img:hover::after {
    opacity: 1;
}

/* Award Badge Animation */
.award-badge {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Dining Section */
@media (max-width: 1024px) {
    #dining::before,
    #dining::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    #dining .grid {
        gap: 2rem;
    }
    
    #dining img {
        margin-bottom: 1rem;
    }
    
    #dining::before,
    #dining::after {
        display: none;
    }
    
    .dining-feature-card {
        margin-bottom: 1rem;
    }
}

/* Gradient Background Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#dining {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s ease;
    border-radius: 50%;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background-color: rgba(14, 165, 233, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
    font-size: 18px;
}

/* Gallery Image Hover Effect */
.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    color: white;
    background: rgba(14, 165, 233, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-image:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        font-size: 30px;
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        width: 90%;
    }
}
