/* ===================================
   LUXJOURNEY COLLECTIVE - STYLES
   Where Luxury Meets Legacy
   =================================== */

/* Root Variables */
:root {
    /* New Color Scheme: Black, Silver, Kelly Green */
    --primary-silver: #C0C0C0;
    --primary-silver-dark: #A8A8A8;
    --kelly-green: #00A86B;
    --kelly-green-dark: #008F5A;
    --pure-black: #000000;
    --soft-black: #0A0A0A;
    --light-silver: #E8E8E8;
    --off-white: #F5F5F5;
    --pearl-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-light: #D0D0D0;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--pure-black);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--pearl-white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: var(--transition-smooth);
    object-fit: contain;
    mix-blend-mode: lighten;
    display: block;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--off-white);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pearl-white);
    padding: 2rem;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pearl-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subheadline {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--light-gold);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-secondary-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--kelly-green);
    font-family: var(--font-serif);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--kelly-green);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--kelly-green);
    color: var(--pearl-white);
    border-color: var(--kelly-green);
}

.btn-primary:hover {
    background: var(--kelly-green-dark);
    border-color: var(--kelly-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pearl-white);
    border-color: var(--pearl-white);
}

.btn-secondary:hover {
    background: var(--pearl-white);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-silver);
    border-color: var(--primary-silver);
}

.btn-outline:hover {
    background: var(--primary-silver);
    color: var(--pure-black);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* What is LuxJourney Section */
.what-is-section {
    background: var(--soft-black);
}

.content-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--pearl-white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.body-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.expertise-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--pearl-white);
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--kelly-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 168, 107, 0.2);
}

.expertise-item i {
    font-size: 1.8rem;
    color: var(--primary-silver);
    min-width: 30px;
}

.expertise-item span {
    font-size: 1rem;
    color: var(--pearl-white);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Who We Serve Section */
.who-we-serve {
    background: var(--pure-black);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.serve-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 168, 107, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 168, 107, 0.3);
    border-color: var(--kelly-green);
}

.serve-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--kelly-green);
}

.serve-icon i {
    display: inline-block;
    transition: var(--transition-smooth);
}

.serve-card:hover .serve-icon i {
    transform: scale(1.1) rotate(5deg);
    color: var(--kelly-green-dark);
}

.serve-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.serve-card .subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.serve-tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.serve-list {
    margin: 2rem 0;
}

.serve-list p {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.serve-list ul {
    list-style: none;
    padding: 0;
}

.serve-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.serve-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.serve-card .btn {
    margin-top: 2rem;
    width: 100%;
}

/* Signature Series Section */
.signature-series {
    background: var(--soft-black);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.signature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(192, 192, 192, 0.1);
}

.signature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--kelly-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.signature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-silver);
}

.signature-icon i {
    display: inline-block;
    transition: var(--transition-smooth);
}

.signature-card:hover .signature-icon i {
    transform: scale(1.1);
    color: var(--kelly-green);
}

.signature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.signature-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--kelly-green);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.signature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Visionary Path Section */
.visionary-path {
    background: linear-gradient(135deg, var(--pure-black) 0%, #1A1A1A 100%);
    color: var(--pearl-white);
    border-top: 2px solid var(--kelly-green);
    border-bottom: 2px solid var(--kelly-green);
}

.visionary-path .section-title,
.visionary-path h3 {
    color: var(--pearl-white);
}

.visionary-path .section-subtitle {
    color: var(--light-gold);
}

.path-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.path-content h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.path-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.path-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--kelly-green);
    transform: translateY(-3px);
}

.path-item i {
    font-size: 2.5rem;
    color: var(--kelly-green);
}

.path-item span {
    text-align: center;
    font-size: 1rem;
    color: var(--off-white);
}

/* Why Choose Section */
.why-choose {
    background: var(--pure-black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-item i {
    font-size: 3rem;
    color: var(--kelly-green);
    margin-bottom: 1.5rem;
}

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.why-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--soft-black);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
    border-color: var(--kelly-green);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-silver);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--pearl-white);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.stars {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.stars i {
    color: var(--kelly-green);
    font-size: 1rem;
}

/* Join Collective Section */
.join-collective {
    background: linear-gradient(135deg, var(--pure-black) 0%, #0A0A0A 100%);
    color: var(--pearl-white);
    border-top: 2px solid var(--kelly-green);
    border-bottom: 2px solid var(--kelly-green);
}

.join-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.join-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.join-content p {
    font-size: 1.2rem;
    color: var(--light-gold);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pearl-white);
    transition: var(--transition-smooth);
    font-family: var(--font-sans);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--kelly-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
}

.newsletter-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

/* Final CTA Section */
.final-cta {
    background: var(--soft-black);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(192, 192, 192, 0.1);
}

.final-cta-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--kelly-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.3);
}

.final-cta-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--pearl-white);
}

.final-cta-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.final-cta-card .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--pure-black);
    color: var(--off-white);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--kelly-green);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    display: block;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--light-gold);
    font-style: italic;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--kelly-green);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--off-white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--kelly-green);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 50%;
    color: var(--primary-silver);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.social-icons a:hover {
    background: var(--kelly-green);
    color: var(--pearl-white);
    transform: translateY(-3px);
    border-color: var(--kelly-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-headline {
        font-size: 3rem;
    }

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

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

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

    .serve-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero {
        min-height: 600px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }
    
    .footer-logo-image {
        height: 80px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .expertise-list,
    .signature-grid,
    .why-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 4rem 0;
    }

    .serve-card,
    .testimonial-card,
    .final-cta-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }
    
    .footer-logo-image {
        height: 60px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

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

    .serve-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-item,
    .signature-card {
        padding: 1.5rem;
    }
}

/* Animations & Effects */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll Offset for Fixed Nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
