* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}
.header {
    background-color: #1e1e1e;
    padding: 1rem 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 2rem;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f8c822;
}
.hero {
    min-height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1600x900/?photography') no-repeat center center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}
.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.btn {
    display: inline-block;
    background: #f8c822;
    color: #333;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}
.btn:hover {
    background: #e6b800;
}
.section {
    padding: 4rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 1.5rem;
}
.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: translateY(-10px);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}
.category {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem;
    border-radius: 5px;
    background: #f5f5f5;
    transition: transform 0.3s;
}
.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.category i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f8c822;
}
.footer {
    background: #1e1e1e;
    color: #fff;
    padding: 3rem 0 1rem;
    text-align: center;
}
.footer-content {
    margin-bottom: 2rem;
}
.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    list-style: none;
}
.social-links li {
    margin: 0 1rem;
}
.social-links a {
    color: #fff;
    font-size: 1.5rem;
}
.copyright {
    font-size: 0.9rem;
    color: #999;
}

