:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Navigation & Mobile Menu --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 0.5; }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 200;
}

.bar {
    width: 25px;
    height: 1px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 150;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 5px;
    }

    /* Fixed Hamburger to X Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-1px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) brightness(40%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-content h1 span { font-style: italic; }

.btn-outline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    transition: background 0.4s, color 0.4s;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-color);
}

/* --- Intro Text Section --- */
.intro-text {
    padding: 10rem 5%;
    text-align: center;
}

.intro-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.intro-text p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- Home Packages Styling --- */
.home-packages {
    padding: 8rem 5%;
    background-color: #0a0a0a; /* Slightly lighter than pure black to create depth */
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title .subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border 0.4s ease;
}

.package-card:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.package-header .line {
    width: 40px;
    height: 1px;
    background: var(--text-secondary);
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
}

.package-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 200;
    letter-spacing: 0.5px;
}

.package-footer {
    text-align: center;
    margin-top: 5rem;
}

.package-footer p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-text {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

.btn-text:hover {
    opacity: 0.6;
}

/* Mobile Adjustments for Packages */
@media (max-width: 900px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .home-packages {
        padding: 5rem 5%;
    }
}

/* --- Portfolio Specific Styles --- */
.portfolio-page {
    padding-top: 150px;
    background-color: var(--bg-color);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.filter-bar {
    text-align: center;
    margin-bottom: 5rem;
}

.filter-bar span {
    margin: 0 1.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.filter-bar span.active, .filter-bar span:hover {
    color: var(--text-primary);
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 5px;
}

.video-grid .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    padding: 0 10%;
    margin-bottom: 10rem;
}

.video-item {
    text-decoration: none;
    display: block;
}

.video-link {
    text-decoration: none;
    color: inherit;
}

.video-thumbnail-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s;
}

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

.play-icon {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid #fff;
    padding: 10px 20px;
}

.video-item:hover .thumbnail {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-info {
    margin-top: 1.5rem;
}

.video-info h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.video-info p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .video-grid .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- GLightbox Customization --- */
.gcontainer {
    background: rgba(0, 0, 0, 0.95) !important;
}

.gslide-description {
    background: transparent !important;
    text-align: center;
    color: #fff;
}

.gslide-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    margin-top: 20px !important;
}

.gslide-desc {
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 0.7rem !important;
    color: #a0a0a0 !important;
}

.gvideo-container {
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}