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

body {
    font-family: 'Georgia', serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

/* Navigation */
nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a !important;
    letter-spacing: 1px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555 !important;
    margin: 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #d4a574;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #d4a574 !important;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #d4a574 !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4a574;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid #d4a574;
    border-radius: 30px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-section h2 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: #e8e8e8;
    font-weight: 300;
    margin-bottom: 25px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #d4d4d4;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a574 0%, #c49464 100%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.5);
    background: linear-gradient(135deg, #c49464 0%, #b38454 100%);
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: translateX(5px);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #ffffff;
    font-size: 1.8rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Propaganda Movement Section */
.propaganda-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.propaganda-content {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

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

.propaganda-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.propaganda-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #d4a574;
}

.propaganda-intro {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

.propaganda-highlight {
    background: #fff;
    border: 2px solid #d4a574;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.propaganda-highlight h4 {
    color: #d4a574;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.propaganda-highlight p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-style: italic;
}

/* Image Cards Section */
.image-cards-section {
    padding: 80px 20px;
    background-color: #fff;
}

.image-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.image-cards-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #d4a574;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
    font-size: 1rem;
    font-style: italic;
}

.image-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.image-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.image-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8d4d4 0%, #f0e4e4 100%);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    text-align: center;
}

.card-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d4a574;
}

.card-image-placeholder p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 5px 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card:hover .card-overlay {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(212, 165, 116, 0.95);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.image-card:hover .card-title {
    color: #d4a574;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
    font-size: 0.85rem;
    color: #888;
}

.card-meta i {
    color: #d4a574;
}

/* Comparison Table Section */
.comparison-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.comparison-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.comparison-table thead {
    background: linear-gradient(135deg, #d4a574 0%, #c49464 100%);
}

.comparison-table thead th {
    padding: 25px 20px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: none;
}

.comparison-table thead th:first-child {
    width: 25%;
    border-right: 2px solid rgba(255,255,255,0.3);
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #fef9f5;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.1);
}

.comparison-table td {
    padding: 22px 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    vertical-align: top;
    border: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    background-color: #f9f9f9;
    border-right: 2px solid #e0e0e0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr:nth-child(even) td:first-child {
    background-color: #f5f5f5;
}

.comparison-table tbody tr {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease-out;
}

.comparison-table.animate tbody tr {
    opacity: 1;
    transform: translateX(0);
}

.comparison-table.animate tbody tr:nth-child(1) { transition-delay: 0.1s; }
.comparison-table.animate tbody tr:nth-child(2) { transition-delay: 0.2s; }
.comparison-table.animate tbody tr:nth-child(3) { transition-delay: 0.3s; }
.comparison-table.animate tbody tr:nth-child(4) { transition-delay: 0.4s; }
.comparison-table.animate tbody tr:nth-child(5) { transition-delay: 0.5s; }
.comparison-table.animate tbody tr:nth-child(6) { transition-delay: 0.6s; }

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.8;
}

footer p {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 40px 20px;
    }

    .propaganda-section,
    .comparison-section,
    .image-cards-section {
        padding: 50px 15px;
    }

    .image-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-table thead th,
    .comparison-table td {
        padding: 15px 12px;
        font-size: 0.85rem;
    }
}