/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/CSC_0302.JPG');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    margin-top: -1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.cta-button:hover {
    background: #ff5252;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.photo-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.photo-grid img:hover {
    opacity: 0.9;
}

/* Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-card:hover {
    background: #f5f5f5;
}

.category-card a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature {
    padding: 2rem;
}

.feature svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.feature h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Footer hover effects */
footer a:hover {
    color: #fff !important;
}
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f8f8;
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/CSC_0371.JPG');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-top: 120px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1em 2em;
            background: rgba(68, 68, 68, 0.5);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            backdrop-filter: blur(5px);
            transition: all 0.2s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-button:hover {
            background: rgba(51, 51, 51, 0.7);
            transform: translateY(-1px);
        }

        .section {
            padding: 4rem 0;
            background: #fff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2em;
            color: #222;
            margin-bottom: 0.5rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1em;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .photo-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: box-shadow 0.2s ease;
        }

        .photo-card:hover {
            box-shadow: 0 2px 6px rgba(0,0,0,0.12);
        }

        .photo-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .photo-info {
            padding: 1.5rem;
        }

        .photo-info h3 {
            font-size: 1.1em;
            margin-bottom: 0.5rem;
            color: #222;
        }

        .photo-meta {
            font-size: 0.9em;
            color: #666;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .photo-meta a {
            color: #444;
            text-decoration: none;
            font-weight: 500;
        }

        .photo-meta a:hover {
            text-decoration: underline;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .feature {
            padding: 2rem;
        }

        .feature svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            color: #444;
        }

        .feature h3 {
            font-size: 1.2em;
            margin-bottom: 1rem;
            color: #222;
        }

        .feature p {
            color: #666;
            font-size: 0.95em;
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .category-card {
            background: #f8f8f8;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: background-color 0.2s ease;
        }

        .category-card:hover {
            background: #eee;
        }

        .category-card a {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1em;
        }