/* --- Global Styles & Variables --- */
:root {
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', sans-serif;
    --color-dark: #1a1a1a;
    --color-light: #ffffff;
    --color-gray: #f4f4f4;
    --color-text: #333333;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* --- Header & Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: var(--color-light);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-logo h1 a {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-dark);
}

.nav-right i {
    font-size: 1.2rem;
}

.mobile-menu-toggle { display: none; }
.mobile-menu { display: none; }

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero::after { /* Dark overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-light);
    background-color: transparent;
    color: var(--color-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
    opacity: 1;
}

/* --- Featured Section --- */
.featured-section {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('assets/images/wednesday.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* PARALLAX EFFECT FOR DESKTOP */
    color: var(--color-light);
    position: relative;
}

.featured-section::after { /* Dark overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.featured-content {
    z-index: 1;
}

.featured-content h3 {
    font-size: 3.5rem;
    font-weight: 400;
}

.featured-content p {
    margin-bottom: 2rem;
}

.cta-button-light {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.cta-button-light:hover {
    opacity: 0.8;
}

/* --- Interactive Dual-Video Grid --- */
.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-dark);
}

.video-column {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: var(--color-light);
}

.video-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
    z-index: 1;
    transition: background 0.3s ease;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease-in-out;
}

.video-column:hover .bg-video {
    transform: scale(1.05);
}

.grid-content {
    z-index: 2;
}

.grid-content h3 {
    font-size: 2.5rem;
    font-weight: 400;
}

.cta-link {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
    border-bottom: 1px solid var(--color-light);
    padding-bottom: 5px;
}

/* --- Services Section --- */
.services {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 6rem 3rem;
    background-color: var(--color-gray);
}

.service-item i {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.service-item h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 0.9rem;
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Footer --- */
footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 3rem 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-column a {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 300;
    font-size: 0.9rem;
}

.social-icons a {
    font-size: 1.2rem;
    margin-right: 1.5rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.6;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- ABOUT PAGE STYLES --- */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
    color: var(--color-light);
    padding: 8rem 3rem 4rem;
    text-align: center;
    margin-top: 68px; /* Account for fixed navbar */
}

.page-header-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* About Content Container */
.about-content {
    padding: 6rem 3rem;
    background-color: var(--color-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Text Section */
.about-text-section {
    margin-bottom: 6rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--color-dark);
}

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

/* Mystical Quote Section */
.mystical-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--color-gray) 100%);
    padding: 4rem 3rem;
    margin: 4rem 0;
    text-align: center;
    border-radius: 8px;
}

.mystical-quote blockquote {
    position: relative;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-dark);
    max-width: 600px;
    margin: 0 auto;
}

.mystical-quote .fa-quote-left,
.mystical-quote .fa-quote-right {
    font-size: 2rem;
    color: #999;
    opacity: 0.6;
}

.mystical-quote .fa-quote-left {
    margin-right: 1rem;
}

.mystical-quote .fa-quote-right {
    margin-left: 1rem;
}

/* About Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--color-light);
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* About Contact Section */
.about-contact {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
    color: var(--color-light);
    padding: 4rem 3rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 4rem;
}

.about-contact h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-contact p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: var(--color-light);
    transition: opacity 0.3s ease;
}

.contact-link i {
    font-size: 1.3rem;
}

.contact-link:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--color-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .navbar { padding: 1rem 1.5rem; }
    .nav-left, .nav-right { display: none; }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--color-dark);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .mobile-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background: var(--color-light);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease-in-out;
        z-index: 999;
    }
    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu a {
        font-size: 1.2rem;
        padding: 1rem 0;
        text-transform: uppercase;
    }

    .hero-content h2 { font-size: 2.5rem; }
    .featured-content h3 { font-size: 2.5rem; }
    
    /* --- NEW CODE IS HERE --- */
    .featured-section {
        background-attachment: scroll; /* Disables the parallax effect on mobile */
        background-position: center 20%; /* Fine-tunes the image position. Adjust the % as needed! */
    }
    /* --- END OF NEW CODE --- */
    
    .interactive-grid { grid-template-columns: 1fr; }
    .video-column { height: 80vh; }
    
    .services { flex-direction: column; gap: 4rem; padding: 4rem 1.5rem; }

    /* About Page Mobile Styles */
    .page-header {
        padding: 6rem 1.5rem 3rem;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 4rem 1.5rem;
    }
    
    .mystical-quote {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }
    
    .mystical-quote blockquote {
        font-size: 1.4rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-contact {
        padding: 3rem 1.5rem;
    }
    
    .contact-options {
        gap: 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-container { flex-direction: column; }
    
    /* About Page Small Mobile */
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .mystical-quote blockquote {
        font-size: 1.2rem;
    }
}