/**
 * Liza's — Public landing page (index.php)
 * Navy & champagne gold, aligned with admin-premium theme
 */

:root {
    --brand-navy: #0c1222;
    --brand-navy-mid: #151d32;
    --brand-gold: #c9a84c;
    --brand-gold-light: #e8d5a3;
    --brand-gold-dark: #a68832;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --gradient-brand: linear-gradient(135deg, #c9a84c 0%, #e8d5a3 50%, #a68832 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(12, 18, 34, 0.72) 0%, rgba(12, 18, 34, 0.55) 40%, rgba(12, 18, 34, 0.82) 100%);
    --glass-light: rgba(255, 253, 249, 0.92);
    --radius-lg: 18px;
    --shadow-premium: 0 8px 32px rgba(12, 18, 34, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--brand-navy);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../../images/index.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-hero-overlay);
    z-index: -1;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: var(--glass-light);
    backdrop-filter: blur(14px);
    padding: 0.65rem 5%;
    box-shadow: var(--shadow-premium);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
    border: 2px solid rgba(201, 168, 76, 0.35);
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text-main {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    line-height: 1.15;
    transition: color 0.3s ease;
}

.logo-text-sub {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--brand-gold-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text-main { color: var(--brand-navy); }
.navbar.scrolled .logo-text-sub { color: var(--brand-gold-dark); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.25s ease;
}

.navbar.scrolled .nav-links a { color: var(--brand-navy); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-gold-light);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--brand-gold-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-nav {
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1.5px solid transparent;
}

.btn-nav-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
}

.btn-nav-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-gold-light);
    color: var(--brand-gold-light);
}

.navbar.scrolled .btn-nav-outline {
    color: var(--brand-navy);
    border-color: rgba(201, 168, 76, 0.4);
}

.navbar.scrolled .btn-nav-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--brand-gold-dark);
}

.btn-nav-primary {
    background: var(--gradient-brand);
    color: var(--brand-navy);
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
    background: var(--brand-navy);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 18, 34, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-menu .btn-nav {
    margin-top: 0.5rem;
}

.mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 5% 5rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--brand-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 .gold {
    color: var(--brand-gold-light);
    display: block;
    font-size: 0.72em;
    letter-spacing: 4px;
    margin-top: 0.35rem;
}

.hero .tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 1.25rem auto 2rem;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.3s both;
}

.btn-hero {
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

.btn-hero-primary {
    background: var(--gradient-brand);
    color: var(--brand-navy);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--brand-gold-light);
    color: var(--brand-gold-light);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--brand-gold-light);
    font-weight: 700;
}

.hero-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(201, 168, 76, 0.5);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: var(--brand-gold);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

/* ============ SECTIONS ============ */
.section-wrap {
    padding: 5rem 5%;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 0.75rem;
}

.section-label::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gradient-brand);
    margin: 0.5rem auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 253, 249, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    color: var(--brand-navy);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(201, 168, 76, 0.35);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold-dark);
    font-size: 1.4rem;
}

.service-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    color: #475569;
}

.service-list i {
    color: var(--brand-gold);
    font-size: 0.85rem;
}

/* About */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-frame {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-navy-mid), var(--brand-navy));
    border: 2px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-frame .placeholder-icon {
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.4);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content .section-label::after {
    margin: 0.5rem 0 0;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-content h2 span {
    color: var(--brand-gold-light);
}

.about-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 253, 249, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s ease;
    color: var(--brand-navy);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(201, 168, 76, 0.3);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.contact-header i {
    font-size: 1.5rem;
    color: var(--brand-gold-dark);
}

.contact-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.contact-details i {
    color: var(--brand-gold);
    margin-top: 3px;
    width: 18px;
    flex-shrink: 0;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-social a {
    color: var(--brand-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
}

.contact-social a:hover {
    text-decoration: underline;
}

/* CTA band */
.cta-band {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(21, 29, 50, 0.6));
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-lg);
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: rgba(12, 18, 34, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-gold-light);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.65rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--brand-gold-light);
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--gradient-brand);
    color: var(--brand-navy);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.55rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-column ul a:hover {
    color: var(--brand-gold-light);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollDot {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container,
    .contact-container,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
