/* Base styles shared across all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Custom logo image */
.logo-icon::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('images/Untitled-3.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    transition: width 0.3s ease;
}

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

.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    width: 100%;
}

/* Page Hero (for all pages) */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Gallery page hero sections with background images */
.sports-hero,
.concerts-hero,
.nature-hero,
.animals-hero,
.architectural-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.sports-hero::before,
.concerts-hero::before,
.nature-hero::before,
.animals-hero::before,
.architectural-hero::before {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 100;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Responsive heading styles for page hero */
.page-hero h1 {
    font-size: 4rem;
    font-weight: 100;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Base button styles */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 300;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 40px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #555555;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Better background positioning for different screen sizes */
@media (min-width: 1200px) {
    .page-hero {
        min-height: 70vh;
    }

    .sports-hero,
    .concerts-hero,
    .nature-hero,
    .animals-hero,
    .architectural-hero {
        background-position: center top;
    }

    .page-hero h1 {
        font-size: 4rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .page-hero {
        min-height: 60vh;
    }

    .sports-hero,
    .concerts-hero,
    .nature-hero,
    .animals-hero,
    .architectural-hero {
        background-position: center center;
        background-size: contain;
        background-color: #1a1a1a;
    }

    .page-hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }
}

/* Base responsive design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 2px;
        gap: 10px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .page-hero {
        min-height: 50vh;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .sports-hero,
    .concerts-hero,
    .nature-hero,
    .animals-hero,
    .architectural-hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
        letter-spacing: 1px;
        gap: 8px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
}