@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #050a14;
    --bg-gradient: linear-gradient(135deg, #050a14 0%, #0a192f 100%);
    --primary-gold: #d4af37;
    --primary-gold-dim: rgba(212, 175, 55, 0.4);
    --text-white: #f5f5f5;
    --text-muted: rgba(245, 245, 245, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1.5s ease-out;
}

.main-logo {
    max-width: 350px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.main-logo:hover {
    transform: scale(1.05);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #d4af37, #f2d57e, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Meaning Section */
.meaning-section {
    padding-top: 2rem;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

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

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Hebrew Focus */
.hebrew {
    font-family: serif; /* Hebrew fallback */
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Examples Section */
.examples {
    margin-top: 5rem;
    background: var(--glass-bg);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.examples h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.example-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.example-item {
    text-align: center;
}

.example-title {
    font-weight: 600;
    color: var(--primary-gold);
    display: block;
    font-size: 1.2rem;
}

.example-desc {
    color: var(--text-muted);
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.footer-domain {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
    letter-spacing: 2px;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .main-logo {
        max-width: 250px;
    }
}
