/* ===== QUALITY GRANITES - WARM MODERN DESIGN ===== */
/* Enhanced Typography for Professional Polish */

:root {
    /* Warm, inviting background - like sunset on stone */
    --bg-primary: #FDF8F0;
    --bg-secondary: #F5EDE3;
    --bg-card: rgba(255, 250, 240, 0.92);
    --bg-card-solid: #FFF9F0;
    
    /* Warm accent colors - terracotta / copper tones */
    --accent: #C67C4E;
    --accent-dark: #B05E3A;
    --accent-light: #E6B28A;
    --accent-glow: rgba(198, 124, 78, 0.15);
    
    /* Text colors with better contrast */
    --text-dark: #2C2418;
    --text-muted: #6B5A4A;
    --text-light: #FFFFFF;
    --text-subtle: #9B8A78;
    
    /* Typography scale - consistent and harmonious */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.875rem;
    --text-3xl: 2.25rem;
    --text-4xl: 3rem;
    
    /* Effects */
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --glow: 0 0 20px var(--accent-glow);
    
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(145deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #333; /* darker text for readability */
    font-family: 'Poppins', sans-serif;
}
.glass {
    background: rgba(255, 255, 255, 0.85); /* soft glass effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* soft shadow */
    border-radius: 12px;
    color: #222;
}
.btn, .hero-link {
    background-color: #a68b5c;
    color: #fff;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover, .hero-link:hover {
    background-color: #8b6f4a;
}
/* Better text rendering */
h1, h2, h3, h4, .btn, nav a {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(198, 124, 78, 0.03) 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(var(--container), 90%);
    margin: 0 auto;
}
/* ===== EYE-CATCHING NAVIGATION ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(30,20,15,0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #E6B28A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

/* Logo styling - BRIGHT GOLD */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #E6B28A !important; /* bright warm gold */
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Nav links container */
.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

/* Nav links - BRIGHT GOLD on dark background */
.nav-links a {
    text-decoration: none;
    color: #E6B28A !important; /* bright warm gold */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.6rem 0;
    position: relative;
    transition: all 0.3s ease;
}

/* Gold underline effect - LIGHTER */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #F5D5B0; /* lighter gold */
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Hover effect - turns WHITE for contrast */
.nav-links a:hover {
    color: #FFFFFF !important;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active page highlighting - BOLD WHITE */
.nav-links a.active {
    color: #FFFFFF !important;
}

.nav-links a.active::after {
    width: 100%;
    background: #E6B28A;
}

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

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2C2418;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 100;
    border: 1px solid #a68b5c;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    margin-left: 0 !important;
    color: #E6B28A !important;
    font-size: 0.8rem;
    text-transform: none;
    border-bottom: 1px solid rgba(166, 139, 92, 0.3);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #a68b5c;
    color: #2C2418 !important;
}

.dropdown-content a:hover::after {
    display: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 0;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.7rem;
        padding: 0.4rem 0;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        margin-top: 5px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.7rem;
    }
    
    .nav-links a {
        font-size: 0.65rem;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

/* JavaScript for mobile dropdown */
</style>

<script>
// Make dropdown work on mobile (tap to open)
document.querySelector('.dropbtn')?.addEventListener('click', function(e) {
    if (window.innerWidth <= 768) {
        e.preventDefault();
        this.parentElement.classList.toggle('active');
    }
});
</script>
/* Hero Section */
.hero {
    height: 85vh;
    position: relative; /* IMPORTANT */
    overflow: hidden;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    padding-left: 60px;
}

/* 🔥 NEW: Real image instead of background - MOBILE FRIENDLY */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover; /* keeps image sharp */
    object-position: center center; /* centers the image */
    z-index: 0;
}

/* Mobile fix for hero background image */
@media (max-width: 768px) {
    .hero-bg {
        object-fit: cover;
        object-position: 70% center; /* shifts focus to avoid cropping important parts */
    }
}

@media (max-width: 480px) {
    .hero-bg {
        object-position: 75% center; /* further adjustment for small screens */
    }
}

/* REMOVE this completely */
.hero::before {
    display: none;
}

/* Solid card for text */
.hero-card {
    background: rgba(40, 40, 40, 0.9);
    padding: 40px 50px;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: #f5f5f5;

    z-index: 2;
    position: relative;
    text-align: left;
}

/* Text styling (same as yours) */
.hero-card h5 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ccc;
}

.hero-card h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button */
.hero-card .hero-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #a68b5c;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.hero-card .hero-link:hover {
    background-color: #8b6f4a;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:hover::before {
    left: 100%;
}

/* ===== CARDS & GLASS SECTIONS ===== */
.glass, .card, .block {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 124, 78, 0.15);
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.glass:hover, .card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 124, 78, 0.4);
    box-shadow: var(--shadow-lg);
}

.card {
    padding: 0;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.75rem;
}

.card-body h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.card-body p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.price {
    color: var(--accent);
    font-weight: 700;
    font-size: var(--text-lg);
    margin-top: 1rem;
    letter-spacing: -0.01em;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
    border-radius: 3px;
}

/* Section subheadings */
.section-subheading {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-md);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== GRIDS ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

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

.why-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.why-icon {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
}

.why-card h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.why-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ===== BLOCK SECTIONS ===== */
.block {
    padding: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.block h2 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: var(--text-2xl);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.block p {
    color: var(--text-muted);
    font-size: var(--text-md);
    line-height: 1.6;
}

/* Contact Section Card Background */
.contact-card {
    position: relative;
    background: url('images/contact-bg.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Overlay to make text readable */
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(40, 40, 40, 0.65); /* adjust opacity for readability */
    border-radius: 16px;
    z-index: 1;
}

/* Make all child elements above overlay */
.contact-card > * {
    position: relative;
    z-index: 2;
}

/* ===== CONTACT LIST ===== */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.85); /* make items readable over background */
    border-radius: 14px;
    border-left: 3px solid var(--accent);
    font-size: var(--text-base);
    color: #222; /* darker text for readability */
}

.contact-item strong {
    color: var(--accent);
    font-weight: 600;
}

/* Contact Card Background */
.contact-card {
    position: relative;
    background: url('images/contact.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    color: #fff; /* text color for visibility */
}

/* Dark overlay for readability */
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(40, 40, 40, 0.65); /* adjust opacity for clarity */
    border-radius: 16px;
    z-index: 1;
}

/* Make all child elements appear above overlay */
.contact-card > * {
    position: relative;
    z-index: 2;
}

/* Contact List Styling */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.85); /* light card for readability */
    border-radius: 14px;
    border-left: 3px solid var(--accent);
    font-size: var(--text-base);
    color: #222;
}

.contact-item strong {
    color: var(--accent);
    font-weight: 600;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

input, textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(198, 124, 78, 0.2);
    border-radius: 14px;
    color: #222;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

input::placeholder, textarea::placeholder {
    color: var(--text-subtle);
    font-weight: 400;
}

/* Submit Button */
.contact-form button {
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #8b6f4a;
}
/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, rgba(198, 124, 78, 0.08) 0%, rgba(198, 124, 78, 0.03) 100%);
    border: 1px solid rgba(198, 124, 78, 0.2);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-title {
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.cta-small {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: var(--text-sm);
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-card-solid);
    border-top: 1px solid rgba(198, 124, 78, 0.15);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-inner {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: var(--text-xs);
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .grid, .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .block {
        padding: 1.5rem;
    }
    
    .cta-banner {
        padding: 2rem 1.5rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-body h3 {
        font-size: var(--text-lg);
    }
    
    .why-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: var(--text-xs);
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: var(--text-xl);
    }
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: contain; /* shows full image */
    background-color: #f5f5f5; /* fills empty space */
}
/* Work page hero */
.work-hero {
    height: 50vh;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    padding-left: 60px;
}

/* Background image */
.work-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;
}

/* Optional soft overlay for readability */
.work-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Hero card */
.work-hero .hero-card {
    position: relative;
    z-index: 2;

    background: rgba(30, 30, 30, 0.85);
    padding: 30px 40px;
    max-width: 500px;
    border-radius: 12px;

    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Text */
.work-hero .hero-card h5 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 10px;
}

.work-hero .hero-card h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.work-hero .hero-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Button */
.work-hero .hero-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: #a68b5c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.work-hero .hero-link:hover {
    background-color: #8b6f4a;
}
/* Navbar layout */
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo-text {
    font-family: 'Playfair Display', serif; /* stylish font */
    font-size: 26px;
    font-weight: 700;
    color: #a68b5c; /* gold tone (visible + premium) */
    letter-spacing: 1px;
}
/* Force all nav links to be GOLD - no blue/purple */
.nav-inner a,
.nav-inner a:link,
.nav-inner a:visited,
.nav-inner a:hover,
.nav-inner a:active {
    color: #E6B28A !important;
}

/* Hover effect - turns white */
.nav-inner a:hover {
    color: #FFFFFF !important;
}

/* Active page - white */
.nav-inner a.active,
.nav-inner a.active:link,
.nav-inner a.active:visited {
    color: #FFFFFF !important;
}
/* ===== EYE-CATCHING NAVIGATION - SEMI-TRANSPARENT ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    border-bottom: 3px solid #E6B28A;
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

/* Force all nav links to be GOLD */
.nav-inner a,
.nav-inner a:link,
.nav-inner a:visited {
    text-decoration: none;
    color: #E6B28A !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

/* Gold underline */
.nav-inner a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #E6B28A;
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Hover effect - turns white */
.nav-inner a:hover {
    color: #FFFFFF !important;
}

.nav-inner a:hover::after {
    width: 100%;
}

/* Active page - white with underline */
.nav-inner a.active,
.nav-inner a.active:link,
.nav-inner a.active:visited {
    color: #FFFFFF !important;
}

.nav-inner a.active::after {
    width: 100%;
}

/* ===== THREE DOTS DROPDOWN BUTTON ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    color: #E6B28A !important;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.dropbtn:hover {
    color: #FFFFFF !important;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    min-width: 140px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #E6B28A;
    overflow: hidden;
    z-index: 100;
}

.dropdown-content a,
.dropdown-content a:link,
.dropdown-content a:visited {
    display: block;
    padding: 10px 18px;
    color: #E6B28A !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: normal;
    border-bottom: 1px solid rgba(230, 178, 138, 0.2);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #E6B28A;
    color: #1a1814 !important;
}

.dropdown-content a.active,
.dropdown-content a.active:link,
.dropdown-content a.active:visited {
    color: #FFFFFF !important;
    background: rgba(230, 178, 138, 0.2);
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .nav-inner {
        gap: 1rem;
        padding: 0.8rem 0;
    }
    
    .nav-inner a,
    .nav-inner a:link,
    .nav-inner a:visited {
        font-size: 0.7rem;
    }
    
    .dropbtn {
        font-size: 1.5rem;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        margin-top: 5px;
        width: 100%;
        right: auto;
        background: rgba(0,0,0,0.95);
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        gap: 0.8rem;
    }
    
    .nav-inner a,
    .nav-inner a:link,
    .nav-inner a:visited {
        font-size: 0.6rem;
    }
    
    .dropbtn {
        font-size: 1.3rem;
    }
}

