:root {
    --primary-color: #D90012; /* Color de la bandera armenia - Rojo */
    --secondary-color: #0033A0; /* Color de la bandera armenia - Azul */
    --accent-color: #F2A800; /* Color de la bandera armenia - Naranja */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #fff;
    --bg-alt: #f9f9f9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Navigation */
#navbar {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar .nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

#navbar ul {
    display: flex;
}

#navbar ul li a {
    color: var(--secondary-color);
    padding: 0.75rem;
    margin: 0 0.25rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

#navbar ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-background.png') no-repeat center center/cover;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.content-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse img {
    order: 2;
}

.content-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
}

.alt-bg {
    background-color: var(--bg-alt);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    
    .section-content, .section-content.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-content.reverse img {
        order: 0;
    }
    
    .content-section ul {
        padding-left: 0;
        list-style-position: inside;
    }

    #navbar {
        flex-direction: column;
        padding: 0.5rem;
    }
    
    #navbar .nav-logo {
        margin-bottom: 0.5rem;
    }
    
    #navbar ul li a {
        padding: 0.5rem;
    }
}