* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2a2a2a;
    background-image: 
        linear-gradient(rgba(61, 79, 61, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 79, 61, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #d4c5b9;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(180deg, #1a1a1a, #2a2a2a);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #8b7355;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
}

.nav-menu a {
    color: #d4c5b9;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}

.nav-menu a:hover {
    color: #a0826d;
}

.hero {
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 5px solid #8b0000;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: grayscale(30%) sepia(20%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(42, 42, 42, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 85px;
    font-weight: 900;
    color: #d4c5b9;
    text-shadow: 
        3px 3px 0px #8b7355,
        6px 6px 0px #4a5d4a,
        -2px -2px 0px #000000,
        2px -2px 0px #000000,
        -2px 2px 0px #000000;
    letter-spacing: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #a0826d;
    text-shadow: 2px 2px 4px #000000;
    letter-spacing: 8px;
}

.main-content {
    padding: 60px 0;
}

.trending-section {
    margin-bottom: 40px;
}

.section-title {
    color: #8b7355;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 6px solid #8b0000;
    padding-left: 15px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    background: linear-gradient(135deg, rgba(61, 79, 61, 0.3), rgba(74, 93, 74, 0.2));
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 4px solid #8b7355;
    border-right: 2px solid rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.trending-item:hover {
    background: linear-gradient(135deg, rgba(61, 79, 61, 0.5), rgba(74, 93, 74, 0.3));
    transform: translateX(10px);
    border-left-color: #a0826d;
}

.featured-cards {
    margin: 60px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(139, 115, 85, 0.4);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    border-color: #a0826d;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(20%) sepia(15%);
}

.card-content {
    padding: 20px;
}

.card h3 {
    color: #8b7355;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.6;
}

.gallery-section {
    background: linear-gradient(180deg, rgba(61, 79, 61, 0.2), rgba(74, 93, 74, 0.1), rgba(61, 79, 61, 0.2));
    padding: 80px 0;
    margin: 60px 0;
    border-top: 3px solid rgba(139, 115, 85, 0.5);
    border-bottom: 3px solid rgba(139, 115, 85, 0.5);
}

.gallery-title {
    color: #8b7355;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid rgba(139, 115, 85, 0.4);
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.4);
    border-color: #a0826d;
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(20%) sepia(15%);
}

.gallery-content {
    padding: 20px;
}

.gallery-card h3 {
    color: #a0826d;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-card p {
    color: #a8a8a8;
    font-size: 14px;
}

.bottom-hero {
    margin: 60px 0;
}

.bottom-hero-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid rgba(139, 115, 85, 0.5);
    filter: grayscale(20%) sepia(15%);
}

.footer {
    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
    padding: 60px 0 30px;
    border-top: 4px solid #8b7355;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #8b7355;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #b8b8b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a0826d;
    transform: translateX(5px);
    display: inline-block;
}

.footer-logo {
    margin-bottom: 15px;
    border: 3px solid #8b7355;
    border-radius: 8px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link:hover {
    color: #a0826d;
    background-color: rgba(139, 115, 85, 0.1);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero-title {
        font-size: 45px;
        letter-spacing: 5px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 4px;
    }
    
    .gallery-title {
        font-size: 32px;
    }
    
    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}