@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Special+Elite&display=swap');

:root {
    --bg-main: #121212;
    --bg-secondary: #2c1e1e;
    --text-primary: #f5e6ca;
    --text-muted: rgba(245, 230, 202, 0.7);
    --accent: #7c0a02;
    --accent-hover: #9c0d04;
    
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Libre Baskerville', serif;
    --font-accent: 'Special Elite', monospace;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 2rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 480px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(124, 10, 2, 0.4)) drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    margin-bottom: -2rem;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem 4rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(44, 30, 30, 0.4) 0%, rgba(18, 18, 18, 1) 70%);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, #f5e6ca, #cbb68d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 1.2rem;
    border-radius: 4px;
    border: 1px solid rgba(245, 230, 202, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 10, 2, 0.3);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 10, 2, 0.5);
    color: var(--text-primary);
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--bg-secondary);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(245, 230, 202, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.feature-icon {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* App Preview / Shoppe Placeholder */
.preview-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.mockup-placeholder {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 3rem auto 0;
    background: rgba(18, 18, 18, 0.6);
    border: 1px dashed rgba(245, 230, 202, 0.2);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-family: var(--font-accent);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(245, 230, 202, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
}
