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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #4a4a4a;
    --accent-color: #d4c5a9;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e1e1e 0%, #2c2c2c 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, .title, .section-title {
    font-family: 'Nova Round', cursive;
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0 4px 20px var(--shadow);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.gallery-section {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.section-about {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    max-width: 900px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1a1a1a;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(212, 175, 55, 0.8);
    color: var(--text-dark);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: background 0.3s ease;
    z-index: 1001;
    font-weight: bold;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 8px;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.links-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 197, 169, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.link-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.link-card:hover .link-logo {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 197, 169, 0.3);
    border-color: var(--accent-color);
}

.link-card h3 {
    font-family: 'Nova Round', cursive;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.link-card p {
    color: rgba(245, 245, 245, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.link-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.link-button:hover {
    background: #e6d7bb;
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border-top: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    #lightbox-img {
        max-width: 95%;
        max-height: 80%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .gallery-section {
        padding: 1rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}
