body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: white;
    color: #000;
}

nav {
    background: #1e3a8a;
    color: white;
    padding: 8px 15px; /* REDUCED height */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px; /* REDUCED spacing */
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 6px 10px; /* REDUCED clickable area */
    font-size: 0.95rem; /* Slightly smaller text */
    line-height: 1.2;
}

section {
    padding: 40px;
    text-align: center;
}

#home {
    background: #e0f2fe;
}

#pricing {
    background: #f8fafc;
}

button {
    padding: 10px 20px;
    background: #1e3a8a;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 10px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
}

body.dark {
    background-color: #0f172a;
    color: #e5e7eb;
}

body.dark section {
    background-color: #020617;
    color: #e5e7eb;
}

body.dark #home {
    background-color: #020617;
}

body.dark #pricing {
    background-color: #020617;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4 {
    color: #f8fafc;
}

body.dark p,
body.dark em {
    color: #e5e7eb;
}

body.dark .card {
    background-color: #020617;
    color: #e5e7eb;
    border: 1px solid #334155;
}

body.dark nav,
body.dark footer {
    background-color: #020617;
}

body.dark button {
    background-color: #1e293b;
    color: #f8fafc;
}

body.dark input,
body.dark textarea {
    background-color: #020617;
    color: #e5e7eb;
    border: 1px solid #334155;
}

body.dark a {
    color: #93c5fd;
}

#darkModeToggle {
    margin-left: 10px;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 5px;
    background: transparent;
    border: 1px solid white;
    color: white;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, select, textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#availability {
    background: #f1f5f9;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.day {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.day h4 {
    margin-bottom: 10px;
}

.available {
    color: green;
    font-weight: bold;
}

.unavailable {
    color: red;
    font-weight: bold;
}

body.dark #availability {
    background-color: #020617;
}

body.dark .day {
    background-color: #020617;
    color: #e5e7eb;
    border: 1px solid #334155;
}

.slot.night {
    background: #7c3aed;
}

.slot.night:hover {
    background: #6d28d9;
}

body.dark .slot.night {
    background-color: #4c1d95;
}

.profile-container {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 200px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.profile-img:hover {
    transform: scale(1.05);
}

.img-hint {
    font-size: 0.85em;
    opacity: 0.7;
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.2s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.video-intro {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    border-radius: 14px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Video - desktop default */
.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill container on desktop */
    filter: brightness(0.5) contrast(1.2) saturate(1.2);
}

/* Mobile-friendly behavior */
@media (max-width: 768px) {
    .video-intro {
        height: 40vh;
        border-radius: 10px;
    }

    .intro-video {
        object-fit: contain; /* Prevent cropping on mobile */
    }
}

@keyframes redGlow {
    0%, 100% {
        text-shadow: 0 0 4px #ff4d4d, 0 0 8px #ff4d4d, 0 0 12px #ff4d4d, 0 0 18px #ff4d4d;
        color: #ff4d4d;
    }
    50% {
        text-shadow: 0 0 2px #ff6666, 0 0 6px #ff6666, 0 0 10px #ff6666, 0 0 14px #ff6666;
        color: #ff6666;
    }
}

.video-text {
    max-width: 720px;
    margin: 20px auto 60px auto;
    text-align: center;
    font-family: "Courier New", monospace;
    color: #ff4d4d;
    text-shadow: 0 0 4px #ff4d4d;
}

.video-text h2,
.video-text p {
    animation: redGlow 1.5s infinite alternate;
}


.legal-disclaimer {
    max-width: 720px;
    margin: 20px auto 60px auto;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border-left: 5px solid #ff4d4d;
    color: #ff4d4d;
    font-family: "Courier New", monospace;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    max-height: 300px;
    overflow-y: auto;
    animation: redGlow 2s infinite alternate;
}

body.dark .legal-disclaimer {
    background-color: #0f0f0f;
    color: #ff6666;
    border-left-color: #ff6666;
    box-shadow: 0 0 10px rgba(255, 102, 102, 0.4);
}


@media (max-width: 768px) {
    nav {
        padding: 6px 12px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
}


.popup-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    max-width: 420px;
    width: 90%;
    max-height: 85vh; /* Limit popup height */
    padding: 25px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.popup-box .popup-content {
    overflow-y: auto;
    flex: 1;
    margin: 10px 0;
    padding-right: 5px;
}

.popup-box h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.popup-box p {
    font-size: 15px;
    margin: 10px 0;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e53e3e;
    color: #fff;
    border: none;
    font-size: 20px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.popup-close:hover {
    background: #c53030;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}


.share-btn {
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.fb-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1877f2;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.fb-btn img {
    width: 20px;
    height: 20px;
    border-radius: 50%;     
    object-fit: cover;
}

.dont-show {
    font-size: 14px;
    color: #555;
}

@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 15px;
}

.contact-icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-icons img:hover {
    transform: scale(1.15);
    opacity: 0.85;
}
