/* /assets/css/style.css */
/* 
  Translated from RenoCanvas_v7/app/globals.css and component styles.
*/

:root {
    /* RenoCanvas Brand Colors from globals.css */
    --brand-beige: #f5ede0;
    --brand-cornflower-blue: #4c75d2;
    --brand-sage: #9bae8d;
    --brand-sand: #d9cbbe;
    --brand-offwhite: #fcfaf7;

    /* Text & Neutral Colors */
    --text-primary: #2D2D2D;
    --text-secondary: #5D5D5D;
    --border-primary: #D9CBBE;
    --background-primary: #FFFFFF;
}

body {
    font-family: "Geist", "Geist Fallback", sans-serif;
    color: var(--text-primary);
    background-color: var(--background-primary);
    margin: 0;
}

/* ==========================================================================
   Marketing Header (`.lay-header`)
   Translated from marketing-header.tsx
   ========================================================================== */
.lay-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(217, 203, 190, 0.3); /* border-[#D9CBBE]/30 */
    background-color: rgba(252, 250, 247, 0.95); /* bg-[#FCFAF7]/95 */
    backdrop-filter: blur(4px);
}

.lay-header__container {
    display: flex;
    height: 4rem; /* h-16 */
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem; /* px-4 */
    max-width: 1280px; /* Corresponds to 'container' in Tailwind */
    margin: 0 auto;
}

.lay-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
    text-decoration: none;
}

.lay-logo__icon {
    display: flex;
    height: 2.25rem; /* h-9 */
    width: 2.25rem; /* w-9 */
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem; /* rounded-lg */
    background-color: var(--brand-cornflower-blue); /* bg-[#6366F1] */
    color: white;
    font-weight: 600; /* font-semibold */
    font-size: 0.875rem; /* text-sm */
}

.lay-logo__text {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: var(--text-primary); /* text-[#2D2D2D] */
}

.lay-header__nav {
    display: none; /* Hidden on mobile */
}

.lay-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* gap-3 */
}

/* Desktop Styles */
@media (min-width: 768px) {
    .lay-header__nav {
        display: flex;
        align-items: center;
        gap: 1.5rem; /* gap-6 */
    }
    .lay-nav__item {
        color: var(--text-primary);
        font-weight: 500; /* font-medium */
        transition: color 0.2s;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        text-decoration: none; /* Remove underline from links */
        padding: 0; /* Reset button padding */
    }
    .lay-nav__item:hover {
        color: var(--brand-cornflower-blue);
    }
    .lay-mobile-trigger {
        display: none;
    }
}

/* Mobile menu is handled by JS, so we'll hide it for now */
.lay-mobile-sheet {
    display: none;
}

/* ==========================================================================
   Marketing Footer (`.lay-footer`)
   Translated from marketing-footer.tsx
   ========================================================================== */
.lay-footer {
    border-top: 1px solid var(--border-primary);
    background-color: var(--brand-beige);
}

.lay-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem; /* py-12 px-4 */
}

.lay-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) { /* md: */
    .lay-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) { /* lg: */
    .lay-footer__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.lay-footer__description {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.lay-footer__links h3 {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.lay-footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* space-y-3 */
}

.lay-footer__links a {
    font-size: 0.875rem; /* text-sm */
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.lay-footer__links a:hover {
    color: var(--brand-cornflower-blue);
}

.lay-footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Corresponds to gap-3 in Tailwind */
}

.lay-footer__social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Corresponds to gap-2 */
    font-size: 0.875rem; /* text-sm */
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.lay-footer__social-link:hover {
    color: var(--brand-cornflower-blue);
}

.lay-footer__bottom-bar {
    margin-top: 3rem; /* mt-12 */
    border-top: 1px solid var(--border-primary);
    padding-top: 2rem; /* pt-8 */
    text-align: center;
    font-size: 0.875rem; /* text-sm */
    color: var(--text-secondary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.lay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    font-size: .85rem;
}

.lay-button--primary {
    background-color: var(--brand-cornflower-blue);
    color: white;
}
.lay-button--primary:hover {
    background-color: #4469bd; /* Darker cornflower blue */
}

.lay-button--ghost {
    background-color: transparent;
    color: var(--text-primary);
}
.lay-button--ghost:hover {
    background-color: var(--brand-beige); /* hover:bg-[#F5EDE0] */
}
