:root {
    --primary-color: #0f3d5c;
    --primary-dark: #0a2a42;
    --primary-light: #1a5278;
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --text-light: #777;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0f3d5c;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1px 0;
    gap: 48px;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo a {
    display: inline-block;
    line-height: 0;
}

.logo img {
    height: 224px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav {
    display: flex;
    gap: 32px;
    flex: 1;
}

.nav-link {
    color: var(--text-gray);
    font-weight: 700;
    font-size: 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1faa52;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp svg {
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.hero .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.features {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.features .section-title {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.features-grid .feature-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-grid .feature-card:nth-child(n+4) {
    grid-column: auto;
}

.features-grid::after {
    content: '';
    grid-column: 1 / 2;
}

@media (min-width: 769px) {
    .features-grid .feature-card:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2;
    }
    
    .features-grid .feature-card:nth-child(5) {
        grid-column: 3 / 4;
        grid-row: 2;
    }
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.rooms-preview {
    padding: 80px 0;
    background: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.room-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-image img,
.room-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content {
    padding: 24px;
}

.room-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.room-capacity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.room-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.location {
    padding: 80px 0;
    background: white;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 32px;
}

.location-address {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    text-align: center;
}

.location-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.faq .section-title {
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.faq-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 28px;
    border-radius: 12px;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255,255,255,0.15);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 0;
    margin-top: auto;
}

.footer-top-band {
    background: white;
    height: 1px;
    width: 100%;
}

.footer-main {
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    gap: 48px;
}

.about-text {
    text-align: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-list {
    list-style: none;
    margin: 24px auto;
    max-width: 700px;
    text-align: left;
}

.about-list li {
    font-size: 16px;
    color: var(--text-gray);
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.rooms-detail {
    padding: 80px 0;
}

.room-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 48px;
}

.room-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.room-image-large {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.room-detail-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.room-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.room-count {
    font-size: 14px;
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--text-gray);
}

.room-capacity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
}

.room-bed-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.room-description-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.room-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.room-gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.room-gallery-item:hover::after {
    opacity: 0.8;
}

.room-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.room-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-facilities {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.room-facilities .section-title {
    color: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.facility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
}

.facility-item svg {
    color: white;
}

.facility-item span {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.additional-services {
    padding: 80px 0;
    background: var(--bg-light);
    margin-top: 0;
    border-radius: 0;
}

.additional-services .section-title {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 48px;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    padding: 0 48px 0;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.service-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
}

.cta-banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-banner-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    gap: 48px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
}

.contact-icon svg {
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 24px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    gap: 16px;
}

.map-placeholder svg {
    color: var(--primary-color);
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-card .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.contact-card .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.contact-card .btn-whatsapp {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.contact-card .btn-whatsapp:hover {
    background: var(--primary-color);
    color: white;
}

.contact-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .room-detail-header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 120px;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hamburger span:nth-child(1),
    .hamburger span:nth-child(2),
    .hamburger span:nth-child(3) {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 12px;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-list {
        padding: 0 24px 0;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .room-detail-card {
        padding: 24px;
    }
    
    .room-detail-header {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .features,
    .rooms-preview,
    .location,
    .faq,
    .about-content,
    .cta-section,
    .rooms-detail,
    .contact-section,
    .cta-banner,
    .contact-cta {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .room-gallery {
        grid-template-columns: 1fr;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.95);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    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;
    transition: var(--transition);
    z-index: 100000;
}

.lightbox-close:hover {
    background: rgba(0,0,0,0.8);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 100000;
}

.lightbox-nav:hover {
    background: rgba(0,0,0,0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}
