/* 
   Embervalea CSS
   Colors: #050b14 (Bg), #0f172a (Card), #d4af37 (Gold), #e2e8f0 (Text)
*/

:root {
    --embv-clr-bg: #050b14;
    --embv-clr-surface: #0f172a;
    --embv-clr-accent: #d4af37;
    --embv-clr-accent-hover: #f1c94b;
    --embv-clr-text-main: #e2e8f0;
    --embv-clr-text-muted: #94a3b8;
    
    --embv-font-heading: 'Playfair Display', serif;
    --embv-font-body: 'Montserrat', sans-serif;
    
    --embv-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--embv-clr-bg);
    color: var(--embv-clr-text-main);
    font-family: var(--embv-font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--embv-font-heading);
    font-weight: 400;
    color: var(--embv-clr-accent);
}

a {
    color: var(--embv-clr-accent);
    text-decoration: none;
    transition: var(--embv-transition);
}

a:hover {
    color: var(--embv-clr-accent-hover);
}

/* Header */
.embv-top-bar {
    background-color: rgba(5, 11, 20, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
}

.embv-top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.embv-brand-mark {
    font-family: var(--embv-font-heading);
    font-size: 2.5rem;
    color: var(--embv-clr-accent);
    font-weight: 700;
    border: 2px solid var(--embv-clr-accent);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 2px;
}

.embv-brand-details {
    text-align: center;
    flex-grow: 1;
    padding: 0 2rem;
}

.embv-brand-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    color: var(--embv-clr-accent);
}

.embv-brand-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--embv-clr-text-muted);
}

.embv-age-badge {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--embv-clr-accent);
    border: 1px solid var(--embv-clr-accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Showcase (Hero) */
.embv-main-showcase {
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.embv-main-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.embv-showcase-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.embv-showcase-kicker {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--embv-clr-accent);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--embv-clr-accent);
    padding-bottom: 0.5rem;
}

.embv-showcase-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.embv-showcase-desc {
    font-size: 1.2rem;
    color: var(--embv-clr-text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.embv-info-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.embv-info-panel {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--embv-transition);
}

.embv-info-panel:hover {
    transform: translateY(-5px);
    border-color: var(--embv-clr-accent);
    background: rgba(15, 23, 42, 0.8);
}

.embv-panel-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.embv-panel-text {
    font-size: 0.95rem;
    color: var(--embv-clr-text-muted);
}

/* Sections */
.embv-feature-section {
    padding: 6rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.embv-alt-bg {
    background-color: rgba(15, 23, 42, 0.3);
}

.embv-feature-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.embv-section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.embv-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--embv-clr-text-muted);
}

/* Cards Grid */
.embv-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.embv-feature-card {
    background: var(--embv-clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--embv-transition);
    position: relative;
    overflow: hidden;
}

.embv-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--embv-clr-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.embv-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.embv-feature-card:hover::before {
    transform: scaleX(1);
}

.embv-card-kicker {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--embv-clr-text-muted);
    margin-bottom: 0.5rem;
}

.embv-card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.embv-card-desc {
    font-size: 0.95rem;
    color: var(--embv-clr-text-muted);
    margin-bottom: 1.5rem;
}

.embv-card-list {
    list-style: none;
}

.embv-card-list li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--embv-clr-text-main);
}

.embv-card-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--embv-clr-accent);
    font-size: 0.8rem;
}

/* Footer */
.embv-foot-area {
    background-color: #03070d;
    padding: 6rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.embv-foot-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.embv-foot-slogan {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.embv-foot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.embv-foot-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.embv-foot-text {
    font-size: 0.9rem;
    color: var(--embv-clr-text-muted);
}

.embv-foot-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.embv-contact-item {
    font-size: 0.9rem;
    color: var(--embv-clr-text-muted);
}

.embv-foot-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.embv-foot-nav li a {
    font-size: 0.9rem;
    color: var(--embv-clr-text-muted);
}

.embv-foot-nav li a:hover {
    color: var(--embv-clr-accent);
    padding-left: 5px;
}

.embv-foot-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--embv-clr-text-muted);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .embv-info-panels,
    .embv-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .embv-foot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .embv-top-bar-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .embv-brand-details {
        padding: 0;
    }
    
    .embv-showcase-title {
        font-size: 3rem;
    }
    
    .embv-section-title,
    .embv-foot-slogan {
        font-size: 2.5rem;
    }
    
    .embv-info-panels,
    .embv-cards-grid,
    .embv-foot-grid {
        grid-template-columns: 1fr;
    }
}
