/*
Purpose:  Photography Website
Created:  [Jan/23/2026]      
Modified: [May/19/2026]      
Author:   Aramis Viveros     
*/

/* --- 1. Base Variables & Reset --- */
        html {
            /* This forces the scrollbar track to always exist, preventing layout shifts */
            overflow-y: scroll; 
        }
        :root {
            --bg-color: #0f0f0f;
            --surface-color: #1a1a1a;
            --text-color: #f5f5f5;
            --accent-color: #d4af37; /* Subtle gold accent */
            --spacing: 20px;
        }

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

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* --- 2. Navigation & CSS Animated Menu --- */
        header {
            background-color: var(--surface-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: none;
            text-decoration: none;
            color: var(--text-color);
        }

        .logo img {
         /*   height: 50px;  */
            width: auto;  /* Maintains the original aspect ratio */
            display: block; /* Removes any weird spacing beneath the image */
        }
        
        #menu-toggle {
            display: none;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            background-color: var(--text-color);
            border-radius: 2px;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

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

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-color);
        }

        /* --- 3. About Section Layout --- */
        main {
            flex-grow: 1;
            display: flex;
            align-items: center;
            padding: 40px var(--spacing);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        /* The Image Side */
        .about-image {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.5);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            /* A grayscale filter that turns to color on hover for a nice effect */
            filter: grayscale(100%);
            transition: filter 0.6s ease;
        }

        .about-image:hover img {
            filter: grayscale(0%);
        }

        /* The Text Side */
        .about-content h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content h2 {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-top: 30px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content p {
            color: #ccc;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        /* Values List */
        .values-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .values-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
            color: #e0e0e0;
        }

        .values-list li::before {
            content: "✦"; /* Decorative bullet point */
            color: var(--accent-color);
            position: absolute;
            left: 0;
            top: 0;
        }

        .values-list strong {
            color: #fff;
        }

        /* ========================================== */
        /* COOKIE BANNER STYLES                       */
        /* ========================================== */
        .cookie-banner {
            display: none; /* Hidden by default until JS checks storage */
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(15, 15, 15, 0.95);
            border-top: 1px solid #333;
            padding: 15px 20px;
            box-sizing: border-box;
            justify-content: center;
            align-items: center;
            gap: 20px;
            z-index: 9999; /* Keeps it on top of all other images/content */
            flex-wrap: wrap;
            text-align: center;
        }

        .cookie-banner p {
            margin: 0;
            color: #ccc;
            font-size: 0.9rem;
        }

        .cookie-btn {
            -webkit-appearance: none; /* Stops iPhones from hijacking the style */
            appearance: none;
            background-color: #d4af37; /* Your gold/accent color */
            color: #0f0f0f;
            border: none;
            padding: 8px 16px;
            font-size: 0.9rem;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s ease;
        }

        .cookie-btn:hover {
            background-color: #f5f5f5;
        }

        /* --- 4. Footer --- */
        footer {
            text-align: center;
            padding: 20px var(--spacing);
            font-size: 0.8rem;
            color: #888;
            background-color: var(--surface-color);
            margin-top: auto;
        }

        /* --- 5. Responsive Design --- */
        @media (max-width: 900px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image img {
                max-height: 500px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 250px;
                background-color: var(--surface-color);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }

            #menu-toggle:checked ~ .nav-links {
                right: 0;
            }

            #menu-toggle:checked ~ .hamburger span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            #menu-toggle:checked ~ .hamburger span:nth-child(2) {
                opacity: 0;
            }
            #menu-toggle:checked ~ .hamburger span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        }