:root {
    --bg-color: #0F0F0F;
    --text-primary: #EAEAEA;
    --text-secondary: #A0A0A0;
    --accent-gold: #C49C36;
    --accent-gold-dark: #8c6d1d;
    --card-bg: #1A1A1A;
    --border-color: #333333;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

::selection {
    background: var(--accent-gold);
    color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at center, #1a150c 0%, var(--bg-color) 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1611162458324-aae1eb4129a4?q=80&w=2000&auto=format&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero .subtitle {
    font-family: var(--font-body);
    color: var(--accent-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero .title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero .description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.scroll-down-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(196, 156, 54, 0.3);
    border-radius: 50%;
    color: var(--accent-gold);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: rgba(196, 156, 54, 0.1);
    border-color: var(--accent-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Legacy Section */
.legacy-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.text-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.text-block strong {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

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

.product-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border-top: 2px solid var(--accent-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Landmarks */
.landmarks {
    background: #0a0a0a;
}

.landmark-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.landmark-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(196, 156, 54, 0.1);
}

.landmark-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-color: rgba(196, 156, 54, 0.4);
}

.landmark-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.landmark-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10,10,10, 0.95) 0%, rgba(10,10,10, 0.6) 40%, rgba(10,10,10, 0) 100%);
    pointer-events: none;
    z-index: 2;
    transition: background 0.4s ease;
}

.landmark-item:hover .landmark-img-wrapper::after {
    background: linear-gradient(to top, rgba(10,10,10, 0.95) 0%, rgba(10,10,10, 0.4) 30%, rgba(10,10,10, 0) 100%);
}

.landmark-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.landmark-item:hover .landmark-img-wrapper img {
    transform: scale(1.08);
}

.landmark-info {
    position: relative;
    z-index: 3;
    width: 100%;
}

.landmark-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.landmark-info p {
    color: #EAEAEA;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.map-link svg {
    width: 18px;
    height: 18px;
}

.map-link:hover {
    color: #FFFFFF;
}

/* Brand Section */
.brand {
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-color), #050505);
}

.brand-content {
    max-width: 700px;
    margin: 0 auto 5rem;
}

.brand-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.brand-text strong {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 600;
}

.brand-link {
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s;
}

.brand-link:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    color: #666;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .title {
        font-size: 3rem;
    }
    
    .landmark-item {
        aspect-ratio: 4/5;
        padding: 1.5rem;
    }
    
    .landmark-info h3 {
        font-size: 1.5rem;
    }
}
