/*-------------------
        Fonts
-------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

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

html,
body {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #F3F4F6;
    background-color: #0A0E17;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Color Variables */
:root {
    --purple-500: #8f1e56;
    --midnight-900: #0A0E17;
    --midnight-800: #111827;
    --midnight-700: #1F2937;
}

/* Page Wrapper */
.plx-page-wrapper {
    min-height: 100vh;
    background-color: var(--midnight-900);
    color: #F3F4F6;
}

/* Navbar */
.plx-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 24px 0;
}

.plx-navbar-scrolled {
    background-color: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

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

.plx-nav-logo {
    z-index: 50;
}

.plx-logo-link {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 700;
}

.plx-logo-gold {
    color: var(--purple-500);
    font-weight: 300;
}

.plx-nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.plx-nav-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(243, 244, 246, 0.7);
    transition: color 0.3s ease;
}

.plx-nav-link:hover {
    color: var(--purple-500);
}

.plx-btn-nav {
    border: 1px solid var(--purple-500);
    color: var(--purple-500);
    padding: 8px 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.plx-btn-nav:hover {
    background-color: var(--purple-500);
    color: var(--midnight-900);
}

/* Mobile Menu */
.plx-mobile-menu-btn {
    display: none;
    z-index: 10000;
    cursor: pointer;
    color: #fff;
    position: relative;
}

.plx-mobile-menu-overlay {
    position: fixed;
    height: 100vh;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0A0E17;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
    visibility: hidden;
}

.plx-mobile-menu-open {
    transform: translateX(0);
    visibility: visible;
}

.plx-mobile-link {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.plx-mobile-link:hover {
    color: var(--purple-500);
}

.plx-btn-mobile {
    margin-top: 32px;
    border: 1px solid var(--purple-500);
    color: var(--purple-500);
    padding: 12px 32px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.plx-btn-mobile:hover {
    background-color: var(--purple-500);
    color: var(--midnight-900);
}

/* Hero Section */
.plx-hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.plx-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0.7), rgba(10, 14, 23, 0.4), rgba(10, 14, 23, 1));
}

.plx-hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 16px;
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 64px;
}

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

.plx-hero-subtitle {
    color: var(--purple-500);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.plx-hero-heading {
    font-size: 64px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.plx-hero-heading-italic {
    font-style: italic;
    color: var(--purple-500);
}

.plx-hero-description {
    color: rgba(243, 244, 246, 0.7);
    font-size: 18px;
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.plx-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.plx-btn {
    padding: 16px 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.plx-btn-primary {
    background-color: var(--purple-500);
    color: var(--midnight-900);
}

.plx-btn-primary:hover {
    background-color: #fff;
}

.plx-btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.plx-btn-secondary:hover {
    background-color: #fff;
    color: var(--midnight-900);
}

.plx-btn-membership {
    background-color: #fff;
    color: var(--purple-500);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.plx-btn-membership:hover {
    background-color: var(--midnight-900);
    color: #fff;
}

/* Scroll Indicator */
.plx-scroll-indicator {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

/* Services Section */
.plx-services-section {
    padding: 96px 0;
    background-color: var(--midnight-900);
    position: relative;
}

.plx-services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.plx-services-header {
        text-align: center;
    margin-bottom: 80px;
}

.plx-section-label {
    color: var(--purple-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.plx-section-heading {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-top: 16px;
}

.plx-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.plx-services-grid .plx-service-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - 16px);
}

.plx-service-card {
    position: relative;
    overflow: hidden;
    height: 384px;
    cursor: pointer;
}

.plx-service-image {
    position: absolute;
    inset: 0;
}

.plx-service-image img {
        width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.plx-service-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 14, 23, 0.6);
    transition: background-color 0.5s ease;
}

.plx-service-card:hover .plx-service-overlay {
    background-color: rgba(10, 14, 23, 0.4);
}

.plx-service-content {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 16px;
    transition: border-color 0.5s ease;
}

.plx-service-card:hover .plx-service-content {
    border-color: rgba(197, 160, 89, 0.5);
}

.plx-service-icon {
    color: var(--purple-500);
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
}

.plx-service-card:hover .plx-service-icon {
    opacity: 1;
}

.plx-service-title {
        font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 8px;
}

.plx-service-description {
    color: rgba(243, 244, 246, 0.7);
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 384px;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.plx-service-card:hover .plx-service-description {
    opacity: 1;
}

.plx-service-link {
    display: flex;
    align-items: center;
    color: var(--purple-500);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.plx-service-card:hover .plx-service-link {
    opacity: 1;
}

.plx-arrow {
    margin-left: 8px;
}

/* Philosophy Section */
.plx-philosophy-section {
    padding: 96px 0;
    background-color: var(--midnight-800);
    position: relative;
    overflow: hidden;
}

.plx-philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.plx-philosophy-section::before {
    background: radial-gradient(circle, var(--purple-500) 0%, transparent 70%);
    transform: rotate(45deg);
    width: 500px;
    height: 500px;
    top: -128px;
    left: -128px;
    filter: blur(150px);
}

.plx-philosophy-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.plx-philosophy-heading {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.plx-philosophy-text {
    color: rgba(243, 244, 246, 0.6);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 48px;
}

.plx-philosophy-image {
    margin-top: 48px;
}

.plx-philosophy-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0.8;
    transition: opacity 0.7s ease;
}

.plx-philosophy-image img:hover {
    opacity: 1;
}

/* Membership Section */
.plx-membership-section {
    padding: 96px 0;
    background-color: var(--purple-500);
    position: relative;
}

.plx-membership-bg {
    position: absolute;
    inset: 0;
}

.plx-membership-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.plx-membership-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.plx-membership-heading {
    font-size: 64px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 24px;
}

.plx-membership-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Footer */
.plx-footer {
    background-color: var(--midnight-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.plx-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.plx-footer-logo {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 24px;
}

.plx-footer-description {
    color: rgba(243, 244, 246, 0.6);
    font-weight: 300;
    max-width: 384px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.plx-footer-social {
    display: flex;
    gap: 24px;
}

.plx-social-link {
    color: rgba(243, 244, 246, 0.6);
    transition: color 0.3s ease;
}

.plx-social-link:hover {
    color: var(--purple-500);
}

.plx-footer-heading {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: 24px;
}

.plx-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plx-footer-links li,
.plx-footer-links a {
    color: rgba(243, 244, 246, 0.6);
    font-weight: 300;
    font-size: 14px;
    transition: color 0.3s ease;
}

.plx-footer-links a:hover {
    color: var(--purple-500);
}

.plx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.plx-footer-bottom p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(107, 114, 128, 1);
}

.plx-footer-bottom-links {
    display: flex;
    gap: 24px;
}

.plx-footer-bottom-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(107, 114, 128, 1);
    transition: color 0.3s ease;
}

.plx-footer-bottom-links a:hover {
    color: rgba(243, 244, 246, 0.6);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .plx-nav-menu {
    display: none;
}

    .plx-mobile-menu-btn {
        display: block;
    }

    .plx-hero-heading {
        font-size: 40px;
    }

    .plx-hero-cta {
        flex-direction: column;
    }

    .plx-services-grid {
        grid-template-columns: 1fr;
    }

    .plx-services-grid .plx-service-card:nth-child(3) {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
        max-width: 100%;
    }

    .plx-footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .plx-footer-bottom {
        flex-direction: column;
    }

    .plx-membership-heading {
        font-size: 40px;
    }
}

@media (min-width: 769px) {
    .plx-hero-cta {
        flex-direction: row;
    }
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
        display: none;
    }

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Glass Panel Effect */
.glass-panel {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

