/*
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.6;
            /* Ensure the body takes up at least the full viewport height */
            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 {
            color: var(--accent-color);
        }

        /* --- 3. Hero Section (New Main Content) --- */
        main {
            /* Flex-grow ensures the main section fills available space between header and footer */
            flex-grow: 1; 
            display: flex;
            flex-direction: column;
        }

        .hero {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 var(--spacing);
            /* Background image with a dark overlay to make text readable */
/*            background: linear-gradient(rgba(15, 15, 15, 0.6), rgba(15, 15, 15, 0.8)), 
                        url('../time_machine/main/5.jpg') no-repeat center center;
            background-size: cover;   */
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive typography */
            margin-bottom: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
            color: #ccc;
            max-width: 600px;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--accent-color);
            color: #000;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 3px;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .btn:hover {
            background-color: #fff;
            transform: translateY(-2px);
        }

        /* ========================================== */
        /* 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);
        }

        /* --- 5. Responsive Design (Media Queries) --- */
        @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);
            }
        }