/* Template light Styles */
:root {
            --primary-dark: #ffffff;
            --secondary-dark: #f8f9fa;
            --accent-gold: #bfa37e; /* Muted architectural gold */
            --accent-light: #f3e9d8;
            --text-main: #333333;
            --font-serif: 'Raleway', sans-serif;
            --font-sans: 'Montserrat', sans-serif;
            --glow-color: rgba(191, 163, 126, 0.2);
            --border-color: rgba(0,0,0,0.08);
        }

        body {
            background-color: var(--primary-dark);
            color: var(--text-main);
            font-family: var(--font-sans);
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, .font-serif { font-family: var(--font-serif); color: #111; }
        .letter-spacing-1 { letter-spacing: 1px; }
        .letter-spacing-3 { letter-spacing: 3px; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--primary-dark); }
        ::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; border: 2px solid var(--primary-dark); }

        /* Loader */
        #preloader {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #fff;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .spinner-light {
            width: 40px;
            height: 40px;
            border: 2px solid rgba(0,0,0,0.05);
            border-top: 2px solid var(--accent-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .loader-logo {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--accent-gold);
            letter-spacing: 5px;
            animation: breathe 3s infinite ease-in-out;
        }
        @keyframes breathe {
            0%, 100% { opacity: 0.3; transform: scale(0.98); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* Navbar */
        .navbar-light {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            padding: 20px 0;
            transition: all 0.4s ease;
            border-bottom: 1px solid var(--border-color);
        }
        .navbar-light.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        }
        .navbar-brand {
            font-family: var(--font-serif);
            font-weight: 700;
            color: #111 !important;
            letter-spacing: 2px;
            font-size: 1.5rem;
        }
        .nav-link {
            color: #444 !important;
            font-weight: 400;
            margin: 0 15px;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0; width: 0; height: 1px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        /* Buttons */
        .btn-light-gold {
            background: #111;
            color: #fff;
            border: none;
            padding: 12px 30px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            border-radius: 0;
        }
        .btn-light-gold:hover {
            background: var(--accent-gold);
            color: #fff;
            box-shadow: 0 10px 20px var(--glow-color);
            transform: translateY(-3px);
        }

        /* Utility Sections */
        .section-padding { padding: 120px 0; }
        .section-subtitle {
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--accent-gold);
            font-size: 0.8rem;
            margin-bottom: 20px;
            display: block;
            font-weight: 600;
        }
        .section-title {
            font-size: 4rem;
            margin-bottom: 40px;
            font-weight: 300;
            color: #111;
        }

        /* Glow effects */
        .glow-sphere {
            position: absolute;
            width: 500px; height: 500px;
            background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        footer {
            background: #fff;
            padding: 80px 0 40px;
            border-top: 1px solid var(--border-color);
            color: #444;
        }

