/* Contact icon: remove circular background and shadow */
.contact-icon {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

.contact-icon img {
    width: 32px !important;
    height: 32px !important;
    display: inline-block;
}

/* Ensure inline SVG location icon sizes and color */
.contact-icon svg.icon-location {
    width: 32px;
    height: 32px;
    display: inline-block;
    color: var(--bright-red);
}

/* Generic inline location icon color for other contexts (e.g., map placeholder) */
svg.icon-location {
    color: var(--bright-red);
}

/* Import Clean, Readable Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800;900&family=Merriweather:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

/* CLEAN FONT SYSTEM */
* {
    font-family: inherit !important;
}

/* Brand wordmark font (drops in when you add your own file) */
@font-face {
    font-family: 'BrandWordmark';
    src: url('../assets/fonts/brand-wordmark.woff2') format('woff2'),
         url('../assets/fonts/brand-wordmark.otf') format('opentype');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

/* Firlest font from blog folder */
@font-face {
    font-family: 'Firlest';
    src: url('../blog/firlest.regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    font-family: 'Merriweather', serif !important;
    font-weight: 700 !important;
}

body, p, .nav-link, .btn, span, div {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 400 !important;
}

/* CSS Variables - Complete Color System */
:root {
    /* Color Palette */
    --black: #000000;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #ecf0f1;
    --pure-white: #ffffff;
    --bright-red: #dc143c;
    --warm-red: #ff1744;
    --dark-red: #b71c1c;
    --bright-orange: #ff6b35;
    --subtle-border: #bdc3c7;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #000000 0%, #333333 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
    --gradient-red: linear-gradient(135deg, #ff1744 0%, #b71c1c 100%);
    
    /* Applied Colors */
    --primary-color: var(--black);
    --secondary-color: var(--pure-white);
    --accent-color: var(--bright-red);
    --text-primary: var(--black);
    --text-secondary: var(--dark-gray);
    --text-muted: var(--medium-gray);
    --text-on-dark: var(--pure-white);
    --background-primary: var(--pure-white);
    --background-secondary: var(--light-gray);
    --background-dark: var(--black);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Lora', serif;
    --font-refined: 'Crimson Text', serif;
    --font-clean: 'Source Sans Pro', sans-serif;
    --font-primary: var(--font-display);
    --font-secondary: var(--font-clean);
    --font-accent: var(--font-elegant);
    
    /* Layout */
    --section-padding: 60px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 { 
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3 { 
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    line-height: 1.4;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0;
}

a {
    color: var(--dark-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    color: var(--pure-white);
}

.ink-drop {
    width: 60px;
    height: 60px;
    border: 3px solid var(--bright-red);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* NAVBAR WITH BACKGROUND IMAGE */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--pure-white);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* no dark overlay; keep navbar light */
    z-index: 1;
}

.nav-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO - clean image, no background circle */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    width: auto;
    height: auto;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.nav-logo::before {
    content: none;
}

.nav-logo img,
.logo-img {
    width: 96px; /* logo size */
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: transparent; /* respect PNG transparency */
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    transform: none;
    clip-path: none;
}

.nav-logo:hover {
    transform: none;
}

/* Brand text next to logo */
.logo-text {
    margin-left: 12px;
    /* Brand wordmark: Open Sans bold, uppercase */
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 2.4rem;
    line-height: 1.1;
    color: #000;
    text-shadow: none;
    -webkit-text-stroke: 0;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.logo-text:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-item {
    list-style: none;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-shadow: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ff1744;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}

.nav-cta .btn {
    background: var(--gradient-red);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
/* Ensure inline SVG icons are visible and consistent */
.social-links a svg {
    width: 24px;
    height: 24px;
    display: block;
    color: #fff;
}
/* Stroke-based icons pick color from currentColor */
.social-links a svg [stroke] {
    stroke: currentColor;
}
/* Filled shapes use currentColor for contrast */
.social-links a svg [fill="currentColor"] {
    fill: currentColor;
}
}

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transform: perspective(1px) translateZ(0);
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--dark-red);
    color: var(--pure-white);
    border: 2px solid var(--dark-red);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(183, 28, 28, 0.3);
}

.btn-primary:hover {
    background: var(--bright-red);
    color: var(--pure-white);
    border-color: var(--bright-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4);
}

/* Inline SVG icon next to Instagram CTA */
.ig-icon {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 8px;
    fill: currentColor; /* inherits white from .btn-primary */
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 12px 30px;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--pure-white);
    border-color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: 
        repeating-linear-gradient(
            0deg,
            #1a1a1a 0px,
            #1a1a1a 20px,
            #2a2a2a 20px,
            #2a2a2a 22px
        ),
        repeating-linear-gradient(
            90deg,
            #1a1a1a 0px,
            #1a1a1a 40px,
            #2a2a2a 40px,
            #2a2a2a 42px
        );
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: slowRotate 30s linear infinite;
    overflow: hidden;
}

.brick-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #1a1a1a;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    animation: slowRotate 40s linear infinite reverse;
    overflow: hidden;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/images/background.jpg') center/cover;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--bright-red);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 2rem;
    color: var(--black);
}

.refined-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: var(--text-muted);
    opacity: 0.5;
}

.scroll-indicator span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--bright-red);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { transform: translateX(-50%) translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-50%) translateY(40px); opacity: 0; }
}

/* Features Section */
.features {
    background: var(--background-primary);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

/* Feature card images below text */
.feature-card .feature-image {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-top: 15px;
    box-shadow: var(--shadow-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.feature-icon {
    font-size: 3rem;
    color: var(--bright-red);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Artists Section */
.artists {
    background: url('../assets/images/background.jpg') center/cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.artists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.artists .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Gallery Section */
.gallery {
    background: url('../assets/images/background1.jpg') center/cover;
    position: relative;
    padding: 80px 0;
}
    .categories {
        background: var(--background-primary);
        padding: 80px 0;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .category-card {
        position: relative;
        display: block;
        height: 180px;
        border-radius: var(--border-radius);
        overflow: hidden;
        background-size: cover;
        background-position: center;
        box-shadow: var(--shadow-light);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Robust thumbnail rendering using an img inside the card */
    .category-card .bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        display: block;
    }

    .category-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
        z-index: 1;
    }

    .category-title {
        position: absolute;
        left: 16px;
        bottom: 12px;
        color: var(--text-on-dark);
        font-weight: 700;
        letter-spacing: 0.5px;
        z-index: 2;
    }

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-dark);
    }

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:active {
    transform: translateY(-5px) scale(0.98);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Section */
.about {
    background: url('../assets/images/background2.jpg') center/cover;
    position: relative;
    padding: 80px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(236, 240, 241, 0.55);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Contact Section */
.contact {
    background: url('../assets/images/background2.jpg') center/cover;
    position: relative;
    color: var(--text-on-dark);
    padding: 80px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2,
.contact h3 {
    color: var(--text-on-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-on-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--subtle-border);
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer - Complete Styling */
.footer {
    background: url('../assets/images/background2.jpg') center/cover;
    position: relative;
    padding: 60px 0 20px;
    color: var(--text-on-dark);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-on-dark);
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-on-dark);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-on-dark);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--bright-red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bright-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

/* Ensure Font Awesome icons inside retain white color and are visible */
.social-links a i { color: #fff !important; line-height: 1; }
.social-links a svg { width: 22px; height: 22px; fill: #fff; }

/* Fallback: if icon font fails to load, show abbreviation text */
.social-links a:empty::after { content: attr(aria-label); font-size: 0.55rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }

.social-links a:hover {
    background: var(--warm-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-on-dark);
.social-links a i { 
    color:#fff !important; 
    font-size:24px; 
    line-height:1; 
}
/* Fallback text if icon font fails to load */
.social-links a:empty::after, .social-links a i:before { 
    font-family: inherit; 
}
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--bright-red);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bright-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--warm-red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* Animations */
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        flex-direction: column;
        padding: 30px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .logo-text { font-size: 1.5rem; -webkit-text-stroke: 0; }

    /* Keep brand consistent on mobile */
    .logo-text {
        font-family: 'Open Sans', sans-serif !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.02em !important;
        -webkit-text-stroke: 0 !important;
        text-shadow: none !important;
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    .logo-text:hover {
        transform: none !important;
        filter: none !important;
    }
    
    /* Artists Grid Responsive */
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Blog Grid Responsive */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Cards Responsive */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Filters Responsive */
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    /* About Stats Responsive */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}
/* Additional Missing Section Styles */

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.artist-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.artist-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Bias crop upward so the face is visible */
    object-position: 50% 15%;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-social {
    display: flex;
    gap: 15px;
}

.artist-social a {
    width: 50px;
    height: 50px;
    background: var(--bright-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.artist-social a:hover {
    transform: scale(1.1);
    background: var(--warm-red);
}

.artist-info {
    padding: 30px;
    text-align: center;
}

.artist-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.artist-specialty {
    color: var(--bright-red);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--pure-white);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--bright-red);
    border-color: var(--bright-red);
    color: white;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--bright-red);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Booking Section */
.booking {
    background: var(--background-secondary);
    padding: 80px 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.booking-form {
    background: var(--pure-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-red);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.info-card {
    background: var(--pure-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
}

.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--bright-red);
    font-weight: bold;
}

/* Aftercare Section */
.aftercare {
    background: var(--background-dark);
    color: var(--text-on-dark);
    padding: 80px 0;
}

.aftercare .section-title,
.aftercare .section-subtitle {
    color: var(--text-on-dark);
}

.aftercare-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.aftercare-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bright-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--bright-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.timeline-content h3 {
    color: var(--text-on-dark);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-on-dark);
}

.timeline-content li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--bright-red);
}

/* Testimonials Section */
.testimonials {
    background: var(--background-primary);
    padding: 80px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial-card.active {
    display: block;
}

.stars {
    color: var(--bright-red);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--bright-red);
    background: transparent;
    color: var(--bright-red);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--bright-red);
    color: white;
}

/* Blog Section */
.blog {
    background: var(--background-secondary);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    background: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bright-red);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--bright-red);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Instagram Feed */
.instagram-feed {
    background: var(--background-primary);
    padding: 80px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Embed-specific tweaks */
.instagram-post.embed {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.instagram-post.embed .instagram-media,
.instagram-post.embed iframe {
    width: 100% !important;
    min-width: 0 !important;
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

/* Horizontal scrolling variant for Instagram tiles */
.instagram-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}

.instagram-scroll::-webkit-scrollbar {
    height: 8px;
}

.instagram-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

.instagram-tile {
    flex: 0 0 auto;
    width: 220px;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    scroll-snap-align: start;
    position: relative;
}

.instagram-tile a {
    display: block;
    width: 100%;
    height: 100%;
}

.instagram-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-tile:hover img {
    transform: scale(1.04);
}

/* Placeholder tile styling to keep uniform squares when images can't load */
.ig-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: radial-gradient( circle at 30% 30%, rgba(0,0,0,0.06), rgba(0,0,0,0.12) ), #f4f4f4;
}

.ig-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #555;
}

.ig-placeholder-inner .fab.fa-instagram {
    font-size: 28px;
    color: var(--bright-red);
}

.ig-placeholder-inner span {
    font-size: 0.9rem;
}

/* Horizontal scrolling layout for Instagram embeds */
.instagram-scroll.embeds {
    align-items: stretch;
}

.instagram-scroll.embeds .instagram-post.embed {
    flex: 0 0 auto;
    width: 220px;
    aspect-ratio: 1;
    height: auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    scroll-snap-align: start;
}

.instagram-scroll.embeds .instagram-post.embed .instagram-media,
.instagram-scroll.embeds .instagram-post.embed iframe {
    width: 100% !important;
    min-width: 0 !important;
    /* Let the embed overflow and be cropped by the square container */
}

/* Contact Cards */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: transparent !important;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}
.contact-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

.contact-icon img {
    width: 32px;
    height: 32px;
    display: block;
}


.contact-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--warm-red);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.contact-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Studio Info tidy layout */
.contact-summary { text-align: left; }
.contact-summary h3 { text-align: center; margin-bottom: 16px; }
.contact-summary .contact-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}
.contact-summary .col-details > div + div { margin-top: 12px; }
@media (max-width: 768px) {
    .contact-summary .contact-row { grid-template-columns: 1fr; }
}

/* Font Classes */
.script-font { font-family: 'Playfair Display', serif; font-style: italic; }
.vintage-font { font-family: 'Playfair Display', serif; }
.modern-font { font-family: 'Open Sans', sans-serif; }
.brush-font { font-family: 'Playfair Display', serif; font-weight: 700; }
.blackletter-font { font-family: 'Playfair Display', serif; text-transform: uppercase; }

/* Icon Enhancement Styles */
.fas, .fab, .far {
    transition: all 0.3s ease;
}

.contact-icon .fas {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-icon:hover .fas {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Map marker specific styling */
.fa-map-marker-alt {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fa-map-marker-alt:hover {
    transform: scale(1.1);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

/* Decorative positioning for sections */
.hero .decorative-circle {
    top: 15%;
    right: -200px;
    width: 500px;
    height: 500px;
    opacity: 0.05;
}

.hero .brick-circle {
    top: 60%;
    right: -100px;
    width: 250px;
    height: 250px;
    opacity: 0.03;
}

.gallery .decorative-circle {
    top: -120px;
    right: -150px;
    width: 300px;
    height: 300px;
    opacity: 0.04;
}

.gallery .brick-circle {
    bottom: -50px;
    right: -80px;
    width: 180px;
    height: 180px;
    opacity: 0.03;
}

.about .decorative-circle {
    bottom: -150px;
    left: -200px;
    width: 350px;
    height: 350px;
    opacity: 0.04;
}

.about .brick-circle {
    top: -80px;
    left: -100px;
    width: 200px;
    height: 200px;
    opacity: 0.03;
}

/* Aftercare decorative shapes */
.aftercare .decorative-circle {
    top: -100px;
    left: -180px;
    width: 320px;
    height: 320px;
    opacity: 0.06; /* slightly stronger for visibility on dark */
}

.aftercare .brick-circle {
    bottom: -80px;
    right: -120px;
    width: 220px;
    height: 220px;
    opacity: 0.05;
}

