/* Landing Page Specific Styles */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(13, 10, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent);
}

.brand span {
    font-family: var(--font-serif);
}

.ornament-hero {
    margin-bottom: 20px;
}

.ornament-hero img {
    max-width: 300px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1519074063912-ad25b57c9829?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 10, 5, 0.8) 0%, rgba(13, 10, 5, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
}

.hero h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 45px;
    font-size: 1.15rem;
    border-radius: 50px;
}

/* Features */
.features {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.8rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Social Proof Toast */
.social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    animation: slideIn 0.5s ease-out;
}

.proof-content {
    background: rgba(26, 20, 11, 0.9);
    border: 1px solid var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.proof-icon {
    font-size: 1.2rem;
}

#proof-text {
    font-size: 0.85rem;
    color: var(--text-main);
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    header {
        height: 60px;
        padding: 0 5px;
    }
    
    .brand {
        font-size: 1.1rem;
        gap: 5px;
    }
    
    .brand-logo {
        height: 30px !important;
    }
    
    .nav-links .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btns .btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .brand span {
        display: none; /* Hide brand text on very small screens to save space */
    }
    
    .nav-links .btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}
