/* ───────────────────────────────────────────
   1. RESET & BASE
─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: #fffcf9;
    color: #0f172a;
    overflow-x: hidden;
}











/* ───────────────────────────────────────────
   2. SHARED GRADIENT UTILITIES
─────────────────────────────────────────── */
.gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F1D592 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-bg-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #D4AF37;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: black;
}












/* ───────────────────────────────────────────
   3. HEADER
─────────────────────────────────────────── */
.site-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 40;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.4);
    padding: 1px 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding-top: 4px;
    padding-bottom: 3px;
}

.site-header:not(.scrolled) {
    padding-top: 4px;
    padding-bottom: 4px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    word-spacing: 4px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: black;
    transition: color 0.3s ease;
    margin-left: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle:hover {
    /* color: #B8860B; */
    color: #D4AF37;
}

.menu-icon {
    font-size: 30px;
}

@media (min-width: 768px) {
    .site-title {
        font-size: 30px;
    }

    .menu-toggle {
        margin-left: 0;
    }
}


















/* ───────────────────────────────────────────
   4. MAIN
─────────────────────────────────────────── */
.main-split {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 55px;
}

@media (min-width: 1024px) {
    .main-split {
        flex-direction: row;
        min-height: calc(100vh - 73px);
    }
}

/* LEFT SECTION (hidden on mobile, visible lg) */
.visual-panel {
    display: none;
    position: relative;
    overflow: hidden;
    background-color: #fff4ed;
}

@media (min-width: 1024px) {
    .visual-panel {
        display: block;
        width: 50%;
    }
}

.visual-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 32px;
}

@media (min-width: 1280px) {
    .visual-content {
        padding: 64px;
    }
}

.glass-card {
    background: rgba(181, 181, 181, 0.5);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 32px;
}

.glass-card h1 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1.4;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .glass-card h1 {
        font-size: 40px;
    }
}

.glass-card p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.5;
}

.stats-row {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 29px;
    font-weight: 800;
    color: #fade81;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 42px;
    background-color: rgba(255, 255, 255, 1);
}





/* RIGHT FORM PANEL */
.form-panel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

@media (min-width: 1024px) {
    .form-panel {
        width: 50%;
        padding: 48px;
    }
}
@media (max-width: 1024px) {
    .form-panel {
        padding: 72px 24px 32px 24px;
    }
}

.form-container {
    max-width: 448px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-header h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    font-weight: 500;
}


/* form elements */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-left: 4px;
}

.radio-group {
    display: flex;
    gap: 24px;
    align-items: center;
    background-color: #fefcf9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 4px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
    color: #1e293b;
    cursor: pointer;
}

.radio-option input {
    width: 18px;
    height: 18px;
    accent-color: #D4AF37;
    margin: 0;
    cursor: pointer;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.input-icon span {
    font-size: 20px;
}

.input-field {
    width: 100%;
    padding: 14px 16px 14px 44px;
    padding-left: 44px;
    border: 1px solid #e2e8f0;
    background-color: #fefcf9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
}

.input-field:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
    background-color: white;
}

.address-field {
    resize: vertical;
    min-height: 80px;
}

.form-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.btn-email-submit, .btn-whatsapp {
    width: 100%;
    border: none;
    color: white;
    padding: 10px 12px;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Jost', sans-serif;
    gap: 10px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    box-shadow: 0 8px 20px -8px rgba(180, 130, 30, 0.4);
}

.btn-whatsapp:hover {
    transform: scale(0.98);
    background: linear-gradient(135deg, #c2a22c 0%, #a57209 100%);
}

.btn-email-submit {
    background: white;
    border: 2px solid #D4AF37;
    color: #B8860B;
    border-radius: 25px;
}

.btn-email-submit:hover {
    box-shadow: 0 8px 20px -8px rgba(180, 130, 30, 0.4);
    transform: scale(0.98);
}















/* ───────────────────────────────────────────
   15. FOOTER
─────────────────────────────────────────── */
.site-footer {
    color: #1A202C;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    row-gap: 5px;
}

@media (max-width: 700px) {
    .site-footer {
        flex-direction: column;
    }
}

.developer a {
    color: #1A202C;
    text-decoration: none;
    transition: all 0.2s ease;
}

.developer a:hover {
    color: #D4AF37;
}











/* ───────────────────────────────────────────
   16. SIDEBAR OVERLAY
─────────────────────────────────────────── */
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(143, 143, 143, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}








/* ───────────────────────────────────────────
   17. SIDEBAR DRAWER
─────────────────────────────────────────── */
.sidebar-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    background-color: #ffffff;
    z-index: 70;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.sidebar-drawer.is-open {
    transform: translateX(0);
}

.sidebar-close-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 8px 20px;
}

.sidebar-close {
    color: #1A202C;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar-close:hover {
    color: #D4AF37;
}

.sidebar-close-icon {
    font-size: 30px;
}

.sidebar-body {
    padding: 0 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.lang-section {
    margin-bottom: 28px;
}

.sidebar-section-label {
    font-size: 13px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    font-weight: 700;
    margin-bottom: 16px;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #9CA3AF;
}

.lang-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lang-btn {
    padding: 4px 12px;
    font-size: 13px;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    background: none;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-family: 'Jost', sans-serif;
    color: #1A202C;
}

.lang-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.lang-btn-active {
    padding: 4px 12px;
    font-size: 13px;
    font-weight: bold;
    background-color: #D4AF37;
    color: #ffffff;
    border-radius: 9999px;
    border: 2px solid #D4AF37;
    font-family: 'Jost', sans-serif;
}

.auth-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    text-align: center;
}

.btn-register {
    flex: 1;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-family: 'Jost', sans-serif;
    text-decoration: none;
    margin-bottom: 0px;
}

.btn-register:hover {
    transform: scale(1.05);
}

.btn-login {
    flex: 1;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #D4AF37;
    color: #B8860B;
    transition: background-color 0.3s ease, color 0.3s ease;
    background: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    border-radius: 60px;
    text-decoration: none;
}

.btn-login:hover {
    background-color: #D4AF37;
    color: #ffffff;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-nav-label {
    font-size: 13px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #9CA3AF;
}

.sidebar-nav-link {
    font-size: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-decoration: none;
    color: #4e4e4e;
    transition: all 0.3s ease;
}

.sidebar-nav-link:hover {
    color: #D4AF37;
}

.sidebar-footer {
    padding: 8px 20px 8px 20px;
    border-top: 1px solid #F3F4F6;
    margin-top: auto;
}

.sidebar-follow-label {
    font-size: 13px;
    font-style: italic;
    text-transform: uppercase;
    /* letter-spacing: 0.1em; */
    margin-bottom: 10px;
    color: #9CA3AF;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: #9CA3AF;
}

.sidebar-social-links {
    display: flex;
    gap: 16px;
}

.sidebar-social-link {
    color: #1A202C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-social-link:hover {
    color: #D4AF37;
}














/* Media Queries */
@media (max-width: 380px) {
    body {
        display: none;
    }
}

@media print {
    body {
        display: none;
    }
}