:root {
    --primary-red: #E30613;
    /* Alkit Red Approx */
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F4F4F4;
    --border-color: #E0E0E0;
}

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

    :root {
        --primary-red: #E30613;
        /* Alkit Red Approx */
        --text-dark: #333333;
        --text-gray: #666666;
        --bg-white: #FFFFFF;
        --bg-light: #F4F4F4;
        --border-color: #E0E0E0;
    }

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

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        background-color: var(--bg-white);
        line-height: 1.6;
        scroll-behavior: smooth;
    }

    /* Top Bar */
    .top-bar {
        background-color: #000;
        color: white;
        padding: 0.5rem 5%;
        font-size: 0.8rem;
        display: flex;
        justify-content: flex-end;
        gap: 1.5rem;
    }

    .top-bar a {
        color: white;
        text-decoration: none;
    }

    .top-bar a:hover {
        color: var(--primary-red);
    }

    /* Header / Nav */
    header {
        background: white;
        padding: 1rem 5%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

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

    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-red);
        text-decoration: none;
        letter-spacing: -1px;
    }

    .logo span {
        color: black;
        font-weight: 300;
    }

    .main-nav {
        display: flex;
        gap: 2rem;
    }

    .main-nav a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        text-transform: uppercase;
        transition: color 0.3s;
    }

    .main-nav a:hover {
        color: var(--primary-red);
    }

    .client-login-btn {
        background-color: var(--primary-red);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

    .client-login-btn:hover {
        background-color: #b00000;
    }

    /* Hero Slider Placeholder */
    .hero {
        background: url('./images/hero.png') center/cover;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    .hero-btn {
        display: inline-block;
        background-color: var(--primary-red);
        color: white;
        padding: 1rem 2rem;
        text-decoration: none;
        font-weight: 700;
        border-radius: 5px;
        font-size: 1.1rem;
    }

    /* Services Grid */
    .services-section {
        padding: 4rem 5%;
        background: var(--bg-white);
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .section-title p {
        color: var(--text-gray);
        font-size: 1.1rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .service-card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .service-img {
        height: 200px;
        background-color: #ddd;
        width: 100%;
        object-fit: cover;
    }

    .service-info {
        padding: 1.5rem;
        text-align: center;
    }

    .service-info h3 {
        color: var(--primary-red);
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .service-info p {
        color: var(--text-gray);
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .service-link {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        border-bottom: 2px solid var(--primary-red);
        padding-bottom: 2px;
    }

    /* Info Section */
    .info-bar {
        background-color: var(--bg-light);
        padding: 3rem 5%;
        text-align: center;
        border-top: 1px solid var(--border-color);
    }

    .info-bar h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* Footer */
    footer {
        background-color: #1a1a1a;
        color: #999;
        padding: 3rem 5%;
        font-size: 0.9rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
    }

    .footer-col h4 {
        color: white;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 0.8rem;
    }

    .footer-col a {
        color: #999;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-col a:hover {
        color: white;
    }

    .copyright {
        text-align: center;
        padding-top: 3rem;
        border-top: 1px solid #333;
        margin-top: 3rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-container {
            flex-direction: column;
            gap: 1rem;
        }

        .main-nav {
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .hero h1 {
            font-size: 2.5rem;
        }
    }

    /* Specific Styles for School Sports Page */

    /* Specialized Hero for School Page */
    .school-hero {
        background: url('./images/school/school_group_photo.png') center/cover;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        margin-bottom: 0;
    }

    .school-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .school-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 2rem;
    }

    .school-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .school-hero p {
        font-size: 1.3rem;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .school-intro {
        padding: 4rem 5%;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-gray);
        line-height: 1.8;
    }

    .photo-types-section {
        padding: 2rem 5% 5rem 5%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .photo-type-row {
        display: flex;
        align-items: center;
        gap: 4rem;
        margin-bottom: 5rem;
    }

    .photo-type-row:last-child {
        margin-bottom: 0;
    }

    .photo-type-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .photo-type-img {
        flex: 1;
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .photo-type-img:hover {
        transform: scale(1.02);
    }

    .photo-type-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .photo-type-content {
        flex: 1;
    }

    .photo-type-content h3 {
        color: var(--primary-red);
        font-size: 2rem;
        margin-bottom: 1rem;
        position: relative;
    }

    /* Decorative line under headers */
    .photo-type-content h3::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--primary-red);
        margin-top: 10px;
    }

    .photo-type-content p {
        color: var(--text-dark);
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .photo-features {
        list-style: none;
        margin-top: 1.5rem;
    }

    .photo-features li {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        color: var(--text-gray);
    }

    .photo-features li::before {
        content: '✓';
        color: var(--primary-red);
        font-weight: bold;
        margin-right: 10px;
    }

    @media (max-width: 768px) {
        .photo-type-row {
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .photo-type-row:nth-child(even) {
            flex-direction: column;
        }

        .photo-type-img {
            height: 250px;
            width: 100%;
        }

        .school-hero h1 {
            font-size: 2.2rem;
        }
    }

    /* Prints, Frames & Canvas Page Styles */
    .category-section {
        padding: 4rem 5%;
        max-width: 1200px;
        margin: 0 auto;
        border-bottom: 1px solid #eee;
    }

    .category-section:last-of-type {
        border-bottom: none;
    }

    .hero-prints {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/prints_hero.png');
        background-size: cover;
        background-position: center;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        margin-bottom: 0;
    }

    .hero-prints h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
        .hero-prints h1 {
            font-size: 2.2rem;
        }
    }

    /* Specific Styles for ID & Passport Page */
    .id-hero {
        background: url('./images/specialty_id_photo.png') center/cover;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        margin-bottom: 0;
    }

    .id-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .id-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 2rem;
    }

    .id-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .id-hero p {
        font-size: 1.3rem;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .id-intro {
        padding: 4rem 5%;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-gray);
        line-height: 1.8;
    }

    /* Specific Styles for Headshots Page */
    .headshot-hero {
        background: url('./images/specialty_headshot.png') center/cover;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        margin-bottom: 0;
    }

    .headshot-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .headshot-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 2rem;
    }

    .headshot-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .headshot-hero p {
        font-size: 1.3rem;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .headshot-intro {
        padding: 4rem 5%;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-gray);
        line-height: 1.8;
    }

    /* Dropdown Menu Styles */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff;
        min-width: 220px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 3px solid var(--primary-red);
        border-radius: 0 0 4px 4px;
        padding: 10px 0;
        left: 0;
    }

    .dropdown-content a {
        color: var(--text-dark);
        padding: 10px 20px;
        text-decoration: none;
        display: block;
        font-size: 0.95rem;
        transition: background-color 0.2s, color 0.2s;
    }

    .dropdown-content a:hover {
        background-color: #f5f5f5;
        color: var(--primary-red);
    }

    .dropdown:hover .dropdown-content {
        display: block;
        animation: fadeInDropdown 0.3s ease;
    }

    .dropdown:hover .dropbtn {
        color: var(--primary-red);
    }

    @keyframes fadeInDropdown {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

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

    /* Specific Styles for Gift Page */
    .gift-hero {
        background: url('./images/gift-albums/album_showcase.jpg') center/cover;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
    }

    .gift-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    }

    .gift-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 2rem;
    }

    .gift-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .gift-hero p {
        font-size: 1.3rem;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .gift-intro {
        padding: 4rem 5%;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.5rem;
        color: var(--primary-red);
        font-weight: bold;
        line-height: 1.4;
    }

    /* Specific Styles for Services Page */
    .services-hero {
        background: url('./images/hero.png') center/cover;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
    }

    .services-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .services-hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 2rem;
    }

    .services-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .services-hero p {
        font-size: 1.3rem;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .services-intro {
        padding: 4rem 5%;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-gray);
        line-height: 1.8;
    }
}