/* ========== Base / Reset ========== */
body {
  font-family: 'Onest', system-ui, -apple-system;
}
/* CSS Variables (colors, spacing) */
:root {
    --dark: #191919;
    --white: #fff;
    --text-white: #F5FCFF;
    --light-gray: #FFFFFFB2;
    --white-secondary: #FBFCFF;

    --blue-300: #067EFE;
    --blue-500: #081f4d;

    --gray-100: #D5E1E7;
    --gray-300: #384f58;
    --gray-500: #3F3F3F;
    --gray-600: #2b2b2b;
    --gray-800: #1A202C;

    /* Brand Colors - Updated to Red/Pink Theme */
    --primary: #e91e63;
    --primary-50: #fce4ec;
    --primary-100: #f8bbd0;
    --primary-200: #f48fb1;
    --primary-300: #f06292;
    --primary-400: #ec407a;
    --primary-500: #e91e63;
    --primary-600: #d81b60;
    --primary-700: #c2185b;
    --primary-800: #ad1457;
    --primary-900: #880e4f;

    /* Gradients with Red/Pink Theme */
    --gradient-primary: linear-gradient(60deg, #ec407a, #d81b60);
    --gradient-secondary: linear-gradient(135deg, #e91e63 0%, #f48fb1 100%);
}

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

/* Focus outline reset */
:focus {
    outline: 0;
}

/* Generic header element padding */
header {
    padding: 18.5px 2.8125rem;
    box-sizing: border-box;
}

/* Global background/text */
body {
    background: var(--white);
    color: var(--dark);
}

/* Prevent scroll when mobile menu is open */
html.no-scroll, body.no-scroll {
    overflow: hidden;
}

/* Overlay and blur when mobile menu is open */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 900; /* below header/menu (1000) */
}
.menu-overlay.visible { opacity: 1; visibility: visible; }

html.blurred body > :not(header):not(#menu-overlay) {
    filter: blur(2px);
    pointer-events: none;
}

/* Main wrapper side padding */
main {
    padding: 0 10px;
}

/* Global font family baseline (legacy components) */
body,
border-style,
input-security,
textarea,
button,
a {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    text-decoration: none;
}

a:active {
    outline: none
}

/* Lists */
ul {
    list-style: none;
}

/* Headings use Italiana */
h1,
h2,
h3 {
    color: var(--dark);
    font-weight: 400;
    font-family: 'Italiana', serif;
}
h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: 110.00000000000001%;
    margin-bottom: 70px;
}


/* Base styles and reset */
.main-wrapper {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Onest', sans-serif;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
    position: relative;
}

.landing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: opacity(0.2); */
    object-position: top;
}

.landing-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.44%, rgba(0, 0, 0, 0.4) 78.31%, rgba(0, 0, 0, 0.4) 100%);
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.44%, rgba(0, 0, 0, 0.4) 69.31%, rgba(0, 0, 0, 0.4) 100%); */
}

/* Help Section ----------------------------- */

.help-section p {
    margin: 0 0 30px 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.landing-footer {
    position: relative;
    z-index: 10;
    padding: 30px 120px 80px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}
@media(max-width: 992px) {
    .landing-footer {
        padding: 30px 60px 40px;
    }
}

.help-menu-inline {
    flex-direction: row;
    gap: 80px;
    margin-top: 16px;
}

.help-menu-inline .menu-item {
    color: var(--white);
}

.help-menu {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.menu-item {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    transition: color 0.3s ease, transform 0.2s ease;
    display: block;
    border-top: 1px solid #fff2f2;
    border-bottom: 1px solid #fff;
    width: 100%;
    padding: 19px 0;
}

.menu-item:hover {
    transform: translateX(3px);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 16.5px 28px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    border: 2px solid transparent;
    line-height: 140%;
    letter-spacing: 0%;
    outline: none;
    max-height: 60px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline:hover {
    transform: translateY(-2px);
}

.btn-solid {
    background: #fff;
    color: var(--dark);
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
}

/* Landing hero specific button styles */
.landing-container .action-buttons .btn-solid {
    background: #000;
    color: #fff;
    border-color: #000;
}

.landing-container .action-buttons .btn-outline {
    background: #fff;
    color: #000;
    border-color: #000;
}

/* Main Content Area ----------------------------- */
.main-content {
    flex: 1;
    position: relative;
    z-index: 10;
    display: flex;
    padding: 80px 120px 40px;
    justify-content: flex-start;
    flex-direction: column;
}
@media(max-width: 992px) {
    .main-content {
        padding: 80px 60px 40px;
    }
}
@media(min-width: 768px) and (max-height: 800px) {
    .main-content {
       padding-top: 50px;
    }
}

/* Sidebar ----------------------------- */

.logo {
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 40px;
}

.logo img {
    width: 100%;
    max-width: 175px;
    height: auto;
}

.content-text {
    position: relative;
    z-index: 2;
    max-width: 530px;
}
@media(min-width: 768px) and (max-height: 800px) {
    .content-text{
        max-width: 500px;
    }
}

.main-heading {
    font-family: 'Italiana', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    vertical-align: middle;
    margin-bottom: 30px;
}
@media(min-width: 768px) and (max-height: 800px) {
    .main-heading {
        font-size: 48px;
    }
}
@media(min-width: 768px) and (max-height: 700px) {
    .main-heading {
        font-size: 40px;
    }
}

.main-subtitle {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #191919CC;
}
@media(min-width: 768px) and (max-height: 800px) {
    .main-subtitle {
        font-size: 20px;
    }
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -3px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design  ----------------------------------*/
@media (max-width: 992px) {

}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    /* Show hamburger button on mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide sidebar by default on mobile */
    .sidebar {
        display: none;
    }
    
    /* Show sidebar when active */
    .sidebar.active {
        display: none;
    }
    
    /* Adjust main content for mobile */
    .main-content {
        width: 100%;
        padding: 80px 20px 20px 20px;
    }
    
    /* Adjust heading sizes for mobile */
    .main-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .main-subtitle {
        font-size: 16px;
    }
    
    /* Adjust logo size for mobile */
    .logo img {
        max-width: 180px;
    }
    
    /* Adjust sidebar content padding */
    .sidebar-content {
        display: none;
    }
    
    /* Prevent body scroll when sidebar is open */
    body.sidebar-open {
        overflow: hidden;
    }

    .landing-footer {
        padding: 20px;
    }

    .help-menu-inline {
        flex-direction: column;
        gap: 10px;
    }
}

/* Accessibility and Focus States */
.menu-item:focus {
    outline: none;
}

/* Animation for smooth loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-text {
    animation: fadeInUp 0.8s ease-out;
}

.sidebar-content {
    animation: fadeInUp 0.6s ease-out;
}