/*
Purpose:  Photography Website
Created:  [Jan/23/2026]      
Modified: [May/19/2026]      
Author:   Aramis Viveros     
*/  
   
   /* Base Theme Styling */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .calculator-container {
            background-color: #1a1a1a;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            width: 100%;
            max-width: 500px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        h1 {
            color: #d4af37;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 25px;
            text-align: center;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Form Layout */
        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 8px;
            color: #b0b0b0;
            letter-spacing: 0.5px;
        }

        input[type="number"],
        select {
            width: 100%;
            padding: 12px;
            background-color: #0f0f0f;
            border: 1px solid #333;
            border-radius: 4px;
            color: #ffffff;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            outline: none;
        }

        input[type="number"]:focus,
        select:focus {
            border-color: #d4af37;
            box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
        }

        /* Custom Checkbox Styling */
        .checkbox-group {
            display: flex;
            align-items: center;
            cursor: pointer;
            user-select: none;
            margin-top: 25px;
            margin-bottom: 25px;
        }

        .checkbox-group input {
            display: none;
        }

        .custom-checkbox {
            width: 20px;
            height: 20px;
            border: 1px solid #333;
            border-radius: 4px;
            background-color: #0f0f0f;
            margin-right: 12px;
            display: inline-block;
            position: relative;
            transition: all 0.3s ease;
        }

        .checkbox-group input:checked + .custom-checkbox {
            background-color: #d4af37;
            border-color: #d4af37;
        }

        .checkbox-group input:checked + .custom-checkbox::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid #0f0f0f;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .checkbox-label {
            font-size: 0.95rem;
            color: #e0e0e0;
        }

        /* Results Display */
        .result-box {
            background-color: #0f0f0f;
            border-left: 4px solid #d4af37;
            padding: 20px;
            border-radius: 0 4px 4px 0;
            margin-top: 25px;
            text-align: center;
        }

        .result-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #888;
            margin-bottom: 5px;
        }

        .result-price {
            font-size: 2.2rem;
            color: #d4af37;
            font-weight: 600;
        }

        /* Responsive Breakpoint */
        @media (max-width: 480px) {
            .calculator-container {
                padding: 20px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .result-price {
                font-size: 1.8rem;
            }
        }