@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #001007;
    --secondary-dark: #0a120a;
    --tertiary-dark: #0c100d;
    --accent: #ffffff;
    --accent-light: rgba(18, 22, 19, 0.18);
    --text-primary: #f7f7f7;
    --text-secondary: #ececec;
    --transition: all 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rethink Sans', serif;
    font-weight: 300;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    position: relative;
}

.logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 25px 12px rgba(255, 255, 255, 0.18); }
    50% { box-shadow: 0 0 35px 15px rgba(255, 255, 255, 0.28); }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
     border-radius: 999px;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;

    border: none;
    pointer-events: none;

    /* removes flicker + keeps cinematic feel */
    filter: brightness(1.05) contrast(1.05);
}

@keyframes heroFade {
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

.hero-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.hero-title {
    font-size: 6.25rem;
    font-weight: 200;
    margin-bottom: 0.6rem;
    font-family: 'The Nautigal', cursive;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35);
    color: var(--text-primary);
}
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');

.hero-subtitle {
    font-size: 1.2rem;
    font-family: 'Rethink Sans', serif;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35);
}

.cta-button {
    padding: 0.9rem 1.9rem;
    font-size: 0.9rem;
    font-weight: 200;
    font-family: 'Rethink Sans', serif;
    border: 2px solid rgba(255, 255, 255, 0.913);
    background: rgba(255, 255, 255, 0.3); /* 10% white */
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 2rem;
    background-color: var(--primary-dark);
    position: relative;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

/* YouTube iframe inside cards */
.portfolio-image iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    object-fit: cover;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 4rem;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(360px, 1fr));
    gap: 2.5rem;
}

.portfolio-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(50px);
}

.portfolio-card[data-scroll] {
    animation: scrollReveal 0.8s ease-out forwards;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 85%;
    max-width: 1000px;
    position: relative;
}

.video-modal video {
    width: 100%;
    border-radius: 10px;
    background: black;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

@keyframes scrollReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.06);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.2);
}

.portfolio-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.portfolio-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-30px);
}

.about-text[data-scroll] {
    animation: scrollReveal 0.8s ease-out forwards;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    background: var(--tertiary-dark);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.18);
    opacity: 0;
    transform: translateX(30px);
}

.stat[data-scroll] {
    animation: scrollReveal 0.8s ease-out forwards;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background-color: var(--primary-dark);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.contact-form[data-scroll] {
    animation: scrollReveal 0.8s ease-out forwards;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

/* TERMS TRIGGER */

.terms-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.4rem;
    margin-bottom: 1.2rem;
}

.terms-trigger span {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.65);
}

/* INFO BUTTON */

.terms-info-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(8px);
}

.terms-info-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: scale(1.08);
}

/* POPUP OVERLAY */

.terms-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
}

/* SHOW POPUP */

.terms-popup.active {
    display: flex;
}

/* POPUP BOX */

.terms-popup-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: rgba(18,18,18,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* CLOSE BUTTON */

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-popup:hover {
    background: rgba(255,255,255,0.15);
    transform: rotate(90deg);
}

/* =========================
   PACKAGE TERMS MINI LINK
========================= */

.package-card .terms-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
    margin-bottom: 1rem;

    font-size: 0.72rem;
    color: rgba(255,255,255,0.72);
}

.package-card .terms-trigger span {
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.5px;
}

.package-card {
    text-align: center;
}

.package-card .package-features {
    text-align: center;
}

.package-card .terms-trigger {
    text-align: center;
}
/* =========================
   INFO BUTTON
========================= */

.package-card .terms-info-btn {
    width: 18px;
    height: 18px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);

    background: transparent;
    color: white;

    font-size: 0.65rem;
    font-weight: 500;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.25s ease;
}

.package-card .terms-info-btn:hover {
    background: rgba(255,255,255,0.08);
}

/* =========================
   POPUP OVERLAY
========================= */

.terms-popup {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 1.5rem;

    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);

    z-index: 99999;
}

.terms-popup.active {
    display: flex;
}

/* =========================
   POPUP BOX
========================= */

.terms-popup-content {
    position: relative;

    width: 100%;
    max-width: 460px;

    background: #0d0d0d;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;

    padding: 2rem;
}

/* =========================
   CLOSE BUTTON
========================= */

.close-popup {
    position: absolute;

    top: 0.8rem;
    right: 0.8rem;

    width: 28px;
    height: 28px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    color: white;

    cursor: pointer;

    font-size: 1rem;

    transition: 0.25s ease;
}

.close-popup:hover {
    background: rgba(255,255,255,0.15);
}

/* =========================
   POPUP CONTENT
========================= */

.terms-popup-content h4 {
    margin-bottom: 1rem;

    font-size: 0.95rem;
    font-weight: 500;

    color: white;

    letter-spacing: 0.5px;
}

.terms-popup-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-popup-content li {
    position: relative;

    padding-left: 1rem;
    margin-bottom: 0.8rem;

    text-align: left;

    color: rgba(255,255,255,0.75);

    font-size: 0.85rem;

    line-height: 1.5;
}

.terms-popup-content li::before {
    content: "•";

    position: absolute;
    left: 0;

    color: white;
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

/* Packages Section */
.packages {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-top: 2rem;

}

.package-card {
    background: var(--tertiary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.package-card[data-scroll] {
    animation: scrollReveal 0.8s ease-out forwards;
}

.package-card.featured {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.package-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.package-badge {
    display: inline-flex;
    align-self: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
}

.package-badge.featured-badge {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.package-price {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    margin-left: 5%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
}


.package-features li {
    width: 65%;
    padding: 0.7rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 0.55rem;
    text-align: left;
}

.package-features li::before {
    content: "✓";
    position: static;
    color: var(--accent);
    font-weight: bold;
}

.package-btn {
    padding: 0.9rem 2rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.package-btn:hover {
    background: white;
    color: black;
}

.package-btn1{
    padding: 0.9rem 2rem;
    background: white;
    border: 2px solid var(--accent);
    color: black;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.package-btn1 .featured-btn:hover {
    background: black;
    color: white;
}

.featured-btn {
    background: var(--accent);
    color: var(--primary-dark);
}

.featured-btn:hover {
    background: var(--accent-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    background: var(--tertiary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .packages-container {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .modal-content {
        width: 95%;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .hero {
        margin-top: 60px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}
