/* ================================================
   LAYOUT & CONTAINER STYLES
   ================================================ */

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3em;
    color: rgba(255,255,255,0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    color: white;
    font-size: 2em;
    opacity: 0.7;
}

/* Catalog Container */
.catalog-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.loading-text {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 1.1em;
}