@import "tailwindcss";
@import "basecoat-css";
@import "./theme.css"; 



#page.sidebar-collapsed .site-main {
    margin-left: 0 !important;
}


@media screen and (max-width: 767px) {
    .main-navigation ul {
        display: none;
    }
}


.site-main {
    margin-left: 256px; /* Matches Basecoat sidebar width */
    transition: margin-left 0.3s ease; /* Smooth transition if sidebar toggles */
    padding: 2rem;
}


@media (max-width: 768px) {
    .site-main {
        margin-left: 0; /* Adjust based on your mobile sidebar behavior */
    }
}




.hero {
    position: relative;
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        #000000 0%, 
        rgba(0, 0, 0, 0.95) 40%, 
        transparent 100%);
    z-index: 10;
}

/* Background image - right side */
.hero-background-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    z-index: 1;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main content container */
.hero-container {
    position: relative;
    z-index: 20;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content-wrapper {
    max-width: 700px;
}

/* Hero title */
.hero-title {
    font-family: 'Sofia Pro', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0 0 3rem;
}

.hero-title-primary {
    display: block;
    color: #ffffff;
}

.hero-title-secondary {
    display: block;
    color: #a3a3a3;
}

/* CTA Button */
.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.hero-cta-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-cta-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-cta-icon {
    transform: scale(1.1);
}

.hero-cta-icon svg {
    color: #ffffff;
}

/* Bottom right tagline */
.hero-tagline {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 20;
    text-align: right;
    max-width: 400px;
}

.tagline-text {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #d5d2d2;
    line-height: 1.6;
    margin: 0;
}

.tagline-line {
    display: block;
    margin-bottom: 0.25rem;
}

.tagline-highlight {
    color: #ffffff;
}

/* Bottom left decoration */
.hero-decoration-bottom {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    z-index: 20;
}

.hero-pulse-circle {
    width: 64px;
    height: 64px;
    background: rgba(251, 191, 36, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pulse-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .hero-background-image {
        width: 55%;
    }
    
    .hero-gradient-overlay {
        background: linear-gradient(to right, 
            #000000 0%, 
            rgba(0, 0, 0, 0.9) 45%, 
            rgba(0, 0, 0, 0.4) 100%);
    }
    
    .hero-title {
        font-size: clamp(3rem, 7vw, 5rem);
    }
    
    .hero-tagline {
        right: 2rem;
        bottom: 2rem;
        max-width: 300px;
    }
    
    .tagline-text {
        font-size: 1.2rem;
    }
}

/* Mobile landscape and small tablets (768px and below) */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        align-items: flex-end;
        padding-top: 80px; /* Account for fixed header */
        flex-direction: column;
    }
    
    /* Make image full width but keep it visible */
    .hero-background-image {
        width: 100%;
        height: 100%;
        opacity: 0.4; /* More visible than before */
    }
    
    /* Adjust gradient for better text readability */
    .hero-gradient-overlay {
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.0) 100%, 
            rgba(0, 0, 0, 0.75) 40%,
            rgba(0, 0, 0, 0.85) 100%);
    }
    
    .hero-container {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    /* Move tagline below content on mobile */
    .hero-tagline {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: left;
        margin-top: 3rem;
        max-width: 100%;
    }
    
    .tagline-text {
        font-size: 1rem;
    }
    
    .hero-decoration-bottom {
        bottom: 2rem;
        left: 1.5rem;
    }
    
    .hero-pulse-circle {
        width: 48px;
        height: 48px;
    }
    
    .hero-pulse-dot {
        width: 10px;
        height: 10px;
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .hero {
        padding-bottom: 10px;
    }
    
    /* Even more visible background */
    .hero-background-image {
        opacity: 0.5;
    }
    
    .hero-title {
        font-size: 4rem;
        letter-spacing: -0.01em;
    }
    
    .hero-cta-button {
        padding: 0.875rem 1.5rem;
        gap: 0.75rem;
    }
    
    .hero-cta-text {
        font-size: 0.75rem;
    }
    
    .hero-cta-icon {
        width: 36px;
        height: 36px;
    }
    
    .tagline-text {
        font-size: 1.0rem;
    }
    
    .hero-decoration-bottom {
        display: none; /* Hide decoration on very small screens */
    }
}

/* Extra small devices (375px and below) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
    }
    
    .hero-cta-button {
        width: 100%;
        justify-content: center;
    }
}