/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6B8E23;
    --secondary-color: #2F4F2F;
    --accent-color: #8FBC8F;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #F5F5DC;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --pine-green: #228B22;
    --earth-brown: #8B4513;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #FAFAF5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px 1.2rem 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Great Vibes', 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 2.2rem;
    color: #7A9F5A;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #6B8E23, #556B2F, #6B8E23, #8FBC8F);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.3) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(47,79,47,0.5), rgba(107,142,35,0.4));
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #FAFAF5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: normal;
    text-align: center;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    text-align: center;
}

.hero-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
}

.hero-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.hero-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-social a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.hero-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-weight: normal;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, #FAFAF5 0%, var(--bg-light) 100%);
    position: relative;
}

/* Special Events Section */
.special-events-section {
    background: var(--white);
    position: relative;
    padding: 80px 0;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 320px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(107, 142, 35, 0.3);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item {
    pointer-events: auto;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid #E8F5E9;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #F0FFF0 100%);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.package-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0.5rem 0;
}

.price del {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-range {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0.5rem 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.grand-opening {
    color: #FF6B6B;
}

.package-highlights {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.package-highlights p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.package-highlights i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Package Modal Specific Styles */
.modal-content-large {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.package-subtitle-modal {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.package-price-modal {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.package-price-modal del {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-right: 10px;
}

.package-note-modal {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.package-timings {
    background: #FFF9E6;
    border-left: 4px solid #FFD700;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.package-timings h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.package-timings p {
    margin: 0.3rem 0;
    color: var(--text-dark);
}

.package-notes {
    background: #FFE6E6;
    border-left: 4px solid #FF6B6B;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.package-notes p {
    margin: 0.3rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.package-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.package-features-list li {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.modal-footer .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Additional Info Section in Modal */
.package-additional-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.additional-info-content {
    background: #F0F8FF;
    border-left: 4px solid #4682B4;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.additional-info-content p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.additional-info-content p strong {
    color: var(--secondary-color);
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.additional-info-content p em {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid #F5F5F5;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.partner-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8F5E9 100%);
    border-radius: 50%;
    border: 2px solid #E0E0E0;
}

.partner-logo img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.partner-card p {
    color: var(--text-light);
}

.partner-card {
    cursor: pointer;
}

.partner-click-hint {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.partner-card:hover .partner-click-hint {
    opacity: 1;
}

/* Partner Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.modal-header h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-top: 0.5rem;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    align-items: center;
}

.modal-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-info-item h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.modal-info-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.modal-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
}

.modal-footer p {
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-info-centered {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.contact-info-centered .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-info-centered .info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-info-centered .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-centered .info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 40px;
    text-align: center;
}

.contact-info-centered .info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-info-centered .info-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

.social-links a i {
    transition: transform 0.3s;
}

.social-links a:hover i {
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo img {
        height: 65px;
        max-width: 160px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-top-content {
        padding-top: 0.5rem;
    }

    .hero-bottom-content {
        padding-bottom: 1.5rem;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info-centered {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-header h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem 0;
    }

    .hero-top-content {
        padding-top: 0;
    }

    .hero-bottom-content {
        padding-bottom: 1rem;
        gap: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo img {
        height: 55px;
        max-width: 140px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .navbar .container {
        padding: 0.8rem 15px 0.8rem 8px;
    }

    .hamburger {
        margin-left: auto;
    }
}

/* Image Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
    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 {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    margin-top: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
    border-radius: 5px;
}

.lightbox-nav:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        font-size: 1.8rem;
        padding: 10px 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Image Protection - Disable Right Click and Selection */
img {
    -webkit-touch-callout: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
