* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #020202;
    font-family: 'Inter', sans-serif;
    color: #ececec;
    line-height: 1.3;
}

.site-container {
    max-width: 1600px;
    margin: 0 auto;
    background: #060606;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

h1, h2, h3 {
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #a3a3a3;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(2, 2, 2, 0.68);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 200;
    flex-wrap: wrap; /* Allow wrapping on mobile */
}

/* Fix for mobile screens */
@media (max-width: 768px) {
    .nav-bar {
        padding: 0.5rem 1.5rem !important;
        /*flex-direction: column;
        gap: 1rem;*/
        /*min-height: 50px;*/
    }

    .logo-wrapper {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1.0rem !important;
        width: 100% !important;
    }

        .nav-links a, .nav-links .my-nav-button {
            /*font-size: 0.7rem !important;*/
            white-space: nowrap !important;
        }
}







/*.logo-mark {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #f5f5f5, #a5a5a5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

    .logo-mark span {
        font-weight: 300;
        font-size: 0.8rem;
        letter-spacing: 0.3em;
        margin-left: 8px;
        color: #8a8a8a;
        background: none;
        -webkit-background-clip: unset;
    }*/

    .nav-links {
    display: flex;
    gap: 2.5rem;
}

    .nav-links a, .nav-links .my-nav-button {
        text-decoration: none;
        color: #cfcfcf;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 400;
        transition: color 0.2s;
        cursor: pointer;
    }

        .nav-links a:hover, .nav-links .my-nav-button:hover {
            color:lightskyblue;
        }


/* Hero Section */
.hero-splash {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
}

.mono-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    z-index: 0;
    opacity: 0.8;
    /*opacity: 0.6;
    filter: grayscale(100%) contrast(1.12) brightness(0.55);*/
}

    .mono-grid .grid-photo {
        background-size: cover;
        background-position: center;
    }

.hero-caption {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 2.5rem;
    margin-left: 5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    border-left: 4px solid #b5b5b5;
}

.invite-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: #cecece;
    margin-bottom: 1rem;
}

.hero-caption h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-caption p {
    font-size: 0.95rem;
    color: #dbdbdb;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-subtle {
    background: transparent;
    border: 1px solid #acacac;
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-subtle:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: lightskyblue;
    }

/* Discretion Section */
.core-discretion {
    padding: 5rem 3rem;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.flex-exclusive {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.exclusive-text {
    flex: 1.3;
}

    .exclusive-text h2 {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

.sep {
    width: 70px;
    height: 1.5px;
    background: #7e7e7e;
    margin: 1rem 0 1.5rem 0;
}

.exclusive-text p {
    color: #bcbcbc;
    margin-bottom: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
}

.code-word {
    margin-top: 1.8rem;
    background: #111111;
    padding: 0.8rem 1.2rem;
    border-left: 3px solid #9e9e9e;
    font-size: 0.8rem;
    color: #d4d4d4;
}

.exclusive-stats {
    flex: 0.9;
    background: #0e0e0e;
    padding: 2rem;
    border: 1px solid #252525;
}

.stat-item {
    border-bottom: 0.5px solid #2c2c2c;
    padding: 1rem 0;
}

    .stat-item h4 {
        font-weight: 500;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }

    .stat-item p {
        font-size: 0.75rem;
        color: #999;
        margin-top: 4px;
    }

/* Gallery Section */
.gallery-mono {
    padding: 5rem 3rem;
    background: #030303;
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .gallery-title h3 {
        font-size: 1.9rem;
        font-weight: 450;
        text-transform: uppercase;
    }

    .gallery-title p {
        color: #888;
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

.grid-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    background: #1f1f1f;
    border: 1px solid #2b2b2b;
}

.mosaic-item {
    /*aspect-ratio: 1 / 1.15;*/
    aspect-ratio: 3 / 5;
    background-size: cover;
    background-position: center 20%;
    /*filter: grayscale(100%) contrast(1.08) brightness(0.68);
    transition: filter 0.25s ease, transform 0.2s;*/
}

    /*.mosaic-item:hover {
        filter: grayscale(80%) contrast(1.1) brightness(0.8);
        transform: scale(0.97);
    }*/

/* CTA Section */
.private-chamber {
    padding: 4rem 3rem;
    background: #0b0b0b;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.chamber-card {
    max-width: 750px;
    margin: 0 auto;
    background: #111;
    padding: 3rem 2rem;
    border: 1px solid #2c2c2c;
    box-shadow: 0 20px 35px -12px black;
}

    .chamber-card h4 {
        font-size: 1.8rem;
        font-weight: 450;

        letter-spacing: 0.01em;

        margin-bottom: 0.6rem;
    }

.discreet-badge {
    font-size: 0.6rem;
    letter-spacing: 0.2em;

    text-transform: uppercase;

    background: #1c1c1c;
    display: inline-block;
    padding: 0.2rem 0.8rem;
    margin-bottom: 1.5rem;
    color: #bbb;
}

.chamber-card p {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.btn-dark {
    background: #181818;
    border: 1px solid #5a5a5a;
    padding: 0.9rem 2.3rem;
    font-weight: 500;
    color: #eee;
    /*letter-spacing: 0.15em;*/
    letter-spacing: 0.2em;
    text-transform: uppercase;

    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-dark:hover {
        background: #272727;
        border-color: lightskyblue;
    }

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.7rem;
    color: #5e5e5e;
    border-top: 0.5px solid #1b1b1b;
    background: #020202;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-bar {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-caption {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        padding: 1.5rem;
    }

        .hero-caption h1 {
            font-size: 2.2rem;
        }

    .flex-exclusive {
        flex-direction: column;
        gap: 2rem;
    }

    .core-discretion,
    .gallery-mono,
    .private-chamber {
        padding: 3rem 1.2rem;
    }

    .mono-grid {
        opacity: 0.8;
    }
}

::selection {
    background: #535353;
    color: #fff;
}





/* Logo styling for PNG replacement */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
}

/*.logo-image {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);*/ /* Makes dark logos white - remove if your PNG is already white */
    /*transition: filter 0.2s ease;
}*/

/*.logo-tagline {
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: #8a8a8a;
}*/

/* Alternative: If your PNG has specific colors, use this instead */
.logo-image {
    height: 64px;
    width: auto;
    /* Remove the filter property for original colors */
}

/* Mobile logo size */
@media (max-width: 768px) {
    .logo-image {
        height: 48px; /* Smaller on mobile */
    }
}




/* Hover effect (optional) */
/*.logo-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
    transition: all 0.2s ease;
}*/

/* Mobile responsive */
/*@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }
}*/


/* Remove focus outline from all headings */
h1, h2, h3, h4, h5, h6 {
    outline: none;
}

/* Remove focus from any element that might get it */
:focus {
    outline: none;
}

/* But keep focus for accessibility on interactive elements */
/*button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #9e9e9e;
    outline-offset: 2px;
}*/







/* Hide the dropdown menu by default */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #181818;
    /*background-color: #ffffff;*/
    /*box-shadow: 0px 8px 16px rgba(0,0,0,0.1);*/
    z-index: 1;
    /*width: 138px;*/
    padding: 8px;
}

    /* Display the dropdown when the 'show' class is applied */
    .dropdown-menu.show {
        display: block;
    }

/* Optional styling for positioning */
/*.my-nav-item {
    position: relative;
    display: inline-block;
}*/





.my-nav-button {
    all:inherit;
}

.my-nav-item {
    padding: 0px;
    margin: 0px;
}

.my-nav-item-separator {
    width: 128px;
    margin: 8px auto; /* Centers the hr */

    border: none;
    border-top: 1px solid #cfcfcf; 
}

.my-custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}





html {
    scroll-behavior: smooth;
}

#s0 {
    scroll-margin-top: 168px; /* Match your navbar height */
}

#s1, #s2, #s3 {
    scroll-margin-top: 68px; 
}

#q1 {
    scroll-margin-top: 88px; 
}

@media (max-width: 768px) {
    #s1, #s2, #s3 {
        scroll-margin-top: 88px; 
    }

    #q1 {
        scroll-margin-top: 108px; /* Match your navbar height */
    }
}















/* Questionnaire Styles - BEGIN */
.questionnaire-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    /*background: #0e0e0e;*/
    /*background: #5f42a0;*/
    background: #331c4b;
    /*border: 1px solid #2c2c2c;*/
    /*border: 1px solid #331c4b;*/
    border-radius: 8px;
    /*margin: 20px 0;*/
    margin: 20px;
    box-shadow: 0 20px 35px -12px black;
}

    .questionnaire-container.visible {
        max-height: 12000px; /* Adjust based on content */
        transition: max-height 0.2s ease-in;
    }

.questionnaire-wrapper {
    padding: 40px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.questionnaire-container.visible .questionnaire-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.questionnaire-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

    .questionnaire-header h3 {
        font-size: 28px;
        color: #ececec;
        margin-bottom: 10px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .questionnaire-header p {
        color: #a3a3a3;
        font-size: 0.85rem;
        /*font-style: italic;*/
    }

.form-group {
    margin-bottom: 24px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 400;
        color: #cfcfcf;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

.form-control {
    width: 100%;
    padding: 12px;
    /*border: 1px solid #2c2c2c;
    border-radius: 0;*/
    border: none;
    border-radius: 0;
    font-size: 1.0rem;
    /*background: #060606;*/
    background: #231235;
    color: #ececec;
    transition: border-color 0.2s;
}

    /*.form-control:focus {
        border-color: #9e9e9e;
        outline: none;
    }*/

    .form-control::placeholder {
        color: #5e5e5e;
    }

.checkbox-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

    .checkbox-group label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: normal;
        cursor: pointer;
        color: #cfcfcf;
        font-size: 0.85rem;
        text-transform: none;
        letter-spacing: normal;
    }

    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
        background: #060606;
        border: 1px solid #2c2c2c;
    }

.questionnaire-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-submit {
    background: #181818;
    color: #eee;
    border: 1px solid #5a5a5a;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

    .btn-submit:hover {
        background: #272727;
        border-color: lightskyblue;
    }

.btn-cancel {
    background: transparent;
    color: #a3a3a3;
    border: 1px solid #2c2c2c;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

    .btn-cancel:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: #5a5a5a;
        color: #ececec;
    }



/* Validation Styles */
.validation-summary {
    background-color: #fee;
    border-left: 4px solid #dc3545;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    color: #721c24;
}

.validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/*.form-group input.input-validation-error,
.form-group select.input-validation-error,
.form-group textarea.input-validation-error {
    border-color: #dc3545 !important;
    border-width: 12px !important;
    background-color: #fff8f8 !important;
}




.form-group .input-validation-error {
    border-color: #dc3545 !important;
    border-width: 6px !important;
    background-color: #fff8f8 !important;
}*/

/* Alternative: Target InputText and InputSelect elements directly */
/*input.input-validation-error,
select.input-validation-error,
textarea.input-validation-error {
    border-color: #dc3545 !important;
    border-width: 3px !important;
    background-color: #fff8f8 !important;
}*/


input.invalid,
select.invalid,
textarea.invalid {
    /*border-color: #dc3545;
    border-width: 1px;*/
    /*background-color: #fff8f8;*/
    border: none;
    border-left: 4px solid #dc3545;
}


/* Optional: Style for valid inputs */
input.modified.valid,
select.modified.valid,
textarea.modified.valid {
    /*border-color: #28a745;*/
    /*background-color: #28a745;*/
    border: none; 
    border-left: 4px solid #28a745; 
}




/*.form-group.valid .form-control {
    border-color: #28a745;
}*/

.required {
    color: #dc3545;
    font-weight: bold;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* auto fill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    transition: background-color 9999s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0px 1000px #231235 inset !important;
    -webkit-text-fill-color: #ececec !important;
}


/* Questionnaire Styles - END */




























/* The modal container handles the overall overlay visibility */
/*#components-reconnect-modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    display: none;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding-top: 200px;
}*/

    /* Blazor updates the wrapper class based on state */
    /*#components-reconnect-modal.components-reconnect-show {
        display: block;
    }

    #components-reconnect-modal.components-reconnect-failed {
        display: block;
    }

    #components-reconnect-modal.components-reconnect-rejected {
        display: block;
    }*/

    /* Hide sub-elements by default unless their specific parent state is active */
    /*#components-reconnect-modal p {
        display: none;
    }

    #components-reconnect-modal.components-reconnect-show .components-reconnect-show {
        display: block;
    }

    #components-reconnect-modal.components-reconnect-failed .components-reconnect-failed {
        display: block;
    }

    #components-reconnect-modal.components-reconnect-rejected .components-reconnect-rejected {
        display: block;
    }*/
