/*
==================================================
IMAGES BY JOAKIM - PHOTOGRAPHY WEBSITE STYLES
==================================================
Clean, minimalistic, and sophisticated design
Updated: 2025
==================================================
*/

/* ========================================
   CSS VARIABLES & GLOBAL STYLES
======================================== */

:root {
    /* Color Palette - Refined & Sophisticated */
    --charcoal: #1a1a1a;              /* Primary text, headlines */
    --slate: #374151;                  /* Navigation, secondary text */
    --stone: #4b5563;                  /* Body text, descriptions */
    --mist: #9ca3af;                   /* Light text, placeholders */
    --pearl: #f3f4f6;                  /* Section backgrounds */
    --cloud: #fafbfc;                  /* Page background */
    --white: #ffffff;                  /* Cards, content areas */
    
    /* Accent Colors */
    --ocean-blue: #2563eb;             /* Primary accent, CTAs */
    --warm-gold: #d97706;              /* Special accents (minimal use) */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing & Layout */
    --border-radius: 12px;
    --border-radius-small: 8px;
    --transition: 0.3s ease;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--stone);
    background-color: var(--cloud);
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   HEADER & NAVIGATION
======================================== */

.top-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 200px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition);
}

.logo {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    color: var(--charcoal);
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--charcoal);
    cursor: pointer;
    padding: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    position: relative;
    margin-left: 40px;
}

.main-nav ul li:first-child {
    margin-left: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--slate);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    padding: 8px 0;
    display: block;
    transition: color var(--transition);
    position: relative;
}

.main-nav ul li a:hover {
    color: var(--ocean-blue);
}

/* Navigation Underline Effect */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ocean-blue);
    transition: width var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    z-index: 1;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 0;
}

.dropdown-content a {
    color: var(--charcoal);
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition);
    text-align: center;
}

.dropdown-content a:hover {
    background-color: var(--pearl);
    color: var(--ocean-blue);
}

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

/* Create invisible bridge to prevent gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    display: block;
    z-index: 999;
}

/* Dropdown Arrow */
.dropdown > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.8rem;
    color: var(--mist);
    transition: transform var(--transition);
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* ========================================
   HERO SLIDER
======================================== */

.hero-slider-section {
    width: 100%;
    height: 725px;
    padding-top: 70px;
    box-sizing: border-box;
    background-color: var(--cloud);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-frame {
    width: 100%;
    height: 655px; /* 725 - 70 padding */
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    width: calc(483px * 20); /* 20 images total for seamless loop */
    animation: scrollSlider 25s linear infinite;
}

.slider-track img {
    width: 483px;
    height: 725px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-483px * 10)); }
}

/* ========================================
   TAGLINE SECTION (ENHANCED)
======================================== */

.intro-block {
    background: var(--charcoal);
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

.intro-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-content h2 {
    font-size: 2.8rem !important;
    margin-bottom: 24px;
    color: var(--warm-gold);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--pearl);
    font-weight: var(--font-weight-normal);
}

/* ========================================
   CATEGORY SECTIONS
======================================== */

.category-block {
    padding: 120px 20px 80px;
    scroll-margin-top: 30px;
}

/* Section Backgrounds */
#branding.category-block {
    background-color: var(--pearl);
}

#portraits.category-block {
    background-color: var(--white);
}

#dog-portraits.category-block {
    background-color: var(--pearl);
}

/* Main Card Design */
.main-card {
    background: var(--white);
    border-radius: 16px;
    padding: 50px;
    margin: 0 auto 60px;
    max-width: 1200px;
    box-shadow: var(--shadow-medium);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    transition: transform var(--transition);
}

.main-image:hover {
    transform: scale(1.02);
}

.category-text {
    color: var(--stone);
    text-align: left;
}

.category-text h2 {
    font-size: 2.4rem;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.category-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 20px;
}

.category-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: flex-start;
}

.category-buttons .btn {
    flex: 1;
    max-width: 180px;
    text-align: center;
}

/* ========================================
   GALLERY LAYOUT
======================================== */

.category-gallery {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.sample-tile {
    text-align: center;
    max-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition);
}

.sample-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.sample-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.sample-label {
    font-size: 0.9rem;
    margin: 0;
    padding: 16px;
    color: var(--charcoal);
    font-weight: var(--font-weight-medium);
    background: var(--white);
}

/* ========================================
   BUTTONS & INTERACTIVE ELEMENTS
======================================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--ocean-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--slate);
    border: 2px solid var(--pearl);
}

.btn-secondary:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
    background: rgba(37, 99, 235, 0.05);
}

/* ========================================
   SERVICES SECTION
======================================== */

#services.services-block {
    background-color: var(--white);
    padding: 100px 0;
    color: var(--stone);
    scroll-margin-top: 30px;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 12px;
    font-size: 2.2rem;
    color: var(--charcoal);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.services-subtitle {
    text-align: center;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: var(--stone);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    margin-top: 60px;
}

.services-grid .service-item:nth-child(2) {
    align-self: center;
}

.service-item {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-light);
    text-align: left;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-item .image-container {
    width: 100%;
    margin-bottom: 24px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-item .image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-item h3 {
    color: var(--charcoal);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-item p {
    color: var(--stone);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   ABOUT SECTION
======================================== */

#about.about-block {
    background-color: var(--pearl);
    padding: 100px 0;
    scroll-margin-top: 30px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.about-content {
    flex: 1 1 580px;
    order: 1;
}

.about-content h2 {
    margin-bottom: 32px;
    font-size: 2.2rem;
    color: var(--charcoal);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--stone);
    margin-bottom: 20px;
}

.about-content .cta-text {
    font-weight: var(--font-weight-semibold);
    margin-top: 32px;
    color: var(--charcoal);
    font-size: 1.05rem;
}

.about-image-section {
    flex: 1 1 420px;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    max-width: 400px;
    box-shadow: var(--shadow-medium);
}

.about-quote {
    margin-top: 24px;
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.about-quote p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--stone);
    margin: 0;
}

/* ==================================================
   INSTAGRAM FEED SECTION
   ================================================== */

.instagram-block {
  background-color: #f7f8f6;
  padding: 60px 20px;
}

.instagram-container {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.instagram-container .section-title {
  font-size: 2rem;
  color: #323232;
  margin-bottom: 40px;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .instagram-container .section-title {
    font-size: 1.5rem;
    line-height: 1.2;        /* Match your global style */
    padding: 0 10px;
    margin-bottom: 30px;
  }
}




/* ========================================
   CONTACT SECTION
======================================== */

#contact.contact-block {
    background-color: var(--white);
    padding: 100px 0;
    scroll-margin-top: 30px;
}

.contact-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.contact-container h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--charcoal);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.contact-intro {
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: var(--stone);
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin: 12px 0;
    border-radius: var(--border-radius-small);
    border: 2px solid var(--pearl);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    margin-top: 16px;
}

.map-section {
    margin-top: 80px;
    text-align: center;
}

.map-section h3 {
    margin-bottom: 24px;
    color: var(--charcoal);
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
}

.map-embed {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: var(--border-radius);
    max-width: 960px;
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-light);
}

.map-info {
  font-size: 0.75rem !important;
  text-align: center;

    font-size: 0.9rem;
    color: var(--mist);
    margin-top: 24px;
    line-height: 1.5;
}

/* ========================================
   REVIEWS SECTION
======================================== */

.reviews-block {
    background-color: var(--pearl);
    padding: 100px 0;
}

.reviews-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.reviews-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--charcoal);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background-color: var(--charcoal);
    color: var(--pearl);
    text-align: center;
    padding: 60px 20px;
    font-size: 0.9rem;
}
.site-footer p {
    font-size: 0.8rem;
    color: var(--warm-gold);
    margin: 0;
}

.footer-social-icons {
    margin-bottom: 24px;
}

.footer-social-icons a {
    display: inline-block;
    margin: 0 12px;
    transition: transform var(--transition);
}

.footer-social-icons a:hover {
    transform: translateY(-2px);
}

.footer-social-icons img {
    height: 24px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(68%) saturate(2098%) hue-rotate(21deg) brightness(98%) contrast(95%);
    transition: filter var(--transition);
}

.footer-social-icons a:hover img {
    filter: brightness(0) saturate(100%) invert(79%) sepia(85%) saturate(2670%) hue-rotate(3deg) brightness(103%) contrast(92%);
}

/* ========================================
   SLIDE-IN POPUP (UPDATED)
======================================== */

.slide-offer {
    position: fixed;
    top: 85px;
    right: -280px;
    width: 260px;
    z-index: 9999;
    transition: right 0.5s ease;
}

.slide-offer.show {
    right: 25px;
}

.slide-card {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    font-family: var(--font-primary);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--charcoal);
    cursor: pointer;
    font-weight: bold;
    transition: color var(--transition);
}

.slide-close:hover {
    color: var(--ocean-blue);
}

.slide-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--ocean-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--charcoal);
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.slide-subtitle {
    font-size: 12px;
    color: var(--stone);
    margin-bottom: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

.slide-timer {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: var(--border-radius-small);
    padding: 12px;
    margin: 16px 0;
}

.timer-label {
    font-size: 10px;
    color: var(--stone);
    margin-bottom: 4px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-display {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: #ff4444;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

.slide-button {
    background: var(--ocean-blue);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--border-radius-small);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    width: 100%;
    margin: 12px 0;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.slide-terms {
    font-size: 9px;
    color: var(--mist);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
    /* MOBILE-ONLY: Hide logo */
    .top-menu-container .logo {
        display: none;
    }
    
    /* MOBILE-ONLY: Hide slide-in coupon popup */
    .slide-offer {
        display: none !important;
    }
    
    /* MOBILE-ONLY: Show hamburger menu */
    .hamburger {
        display: block;
    }
    
    /* MOBILE-ONLY: Position hamburger in center */
    .top-menu-container {
        padding: 15px 20px;
        justify-content: center;
        position: relative;
    }
    
    /* MOBILE-ONLY: Hide navigation by default */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        padding: 20px;
        z-index: 999;
    }
    
    /* MOBILE-ONLY: Show navigation when active */
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-right: 0;
    }
    
    .main-nav ul li {
        margin-left: 0;
    }
    
    .main-nav ul li a::after {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background-color: var(--pearl);
        margin-top: 5px;
        width: 100%;
    }
    
    .dropdown > a::after {
        display: none;
    }
    
    /* Hero Section */
    .hero-slider-section {
        height: 350px;
        padding-top: 60px;
    }
    
    /* Tagline */
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-content p {
    font-size: 1rem;
    }
    /* MOBILE-ONLY: Make black section smaller */
.intro-block {
    padding: 40px 20px 50px;
}

.intro-block h2 {
    font-size: 1.4rem !important;
}

.intro-block p {
    font-size: 0.85rem !important;
}

    
    /* Category Sections */
    .category-block {
        padding: 60px 20px 40px;
    }
    
    .main-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .category-text {
        text-align: center;
    }
    
    .category-text h2 {
        font-size: 2rem;
    }
    
    .category-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .category-buttons .btn {
        max-width: 280px;
        width: 100%;
    }
    
    /* Gallery */
    .category-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid .service-item:nth-child(2) {
        align-self: start;
    }
    
    
    /* About */
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content {
        order: 2;
    }
    
    .about
    .about-image-section {
        order: 1;
    }
}

@media (max-width: 480px) {
  .hero-slider-section {
    height: 525px;
    padding-top: 30px;
  }

  .category-block,
  .intro-block {
    padding: 40px 15px;
  }

  .services-grid {
    overflow-x: hidden;
  }

  .about-container {
    padding: 0 15px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .about-content {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .contact-container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
    
    .services-block,
    .about-block,
    .contact-block,
    .reviews-block {
        padding: 60px 0;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .services-title,
    .about-content h2,
    .contact-container h2,
    .reviews-title {
        font-size: 1.6rem;
    }
    
    .category-text h2 {
        font-size: 1.7rem;
    }
    
    .main-card {
        padding: 20px;
    }
    
    .service-item {
  padding: 16px;
  max-width: 100%;
  box-sizing: border-box;
}


@media (prefers-reduced-motion: reduce) {
    .slider-track {
        animation: scrollSlider 25s linear infinite;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

@media print {
    .top-menu-container,
    .slide-offer,
    .hero-slider-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .category-block {
        padding: 20px 0;
    }
}
/* === GALLERY TITLE & SUBTITLE – GLOBAL STYLING FOR ALL GALLERIES === */
h1.gallery-title {
    margin-bottom: 0.25rem !important;
}

p.gallery-subtitle {
    margin-top: 0 !important;
}

/* Mobile responsive - hide subtitle, smaller title */
@media (max-width: 768px) {
    p.gallery-subtitle {
        display: none !important;
    }
    
    h1.gallery-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    h1.gallery-title {
        font-size: 1.5rem !important;
    }
}

/* === Mobile Slider (Only visible below 768px) === */
@media (max-width: 768px) {
  .slider-frame.desktop-slider {
    display: none;
  }

  .slider-frame.mobile-slider {
    display: block;
    height: 350px;
    overflow: hidden;
  }

  .slider-frame.mobile-slider .slider-track {
    display: flex;
    width: calc(240px * 8); /* 5 originals + 3 repeats */
    animation: scrollMobileSlider 25s linear infinite;
  }

  .slider-frame.mobile-slider .slider-track img {
    width: 240px;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    border-radius: 5px;
  }
}

@keyframes scrollMobileSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 10));
  }
}
/* === SLIDER VISIBILITY === */
.desktop-slider {
  display: block;
}

.mobile-slider {
  display: none;
}

@media screen and (max-width: 768px) {
  .desktop-slider {
    display: none;
  }

  .mobile-slider {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mobile-slider .slider-track {
    animation-duration: 20s;
  }
}

/* === MOBILE WIDGET SCREENSHOT SUBSTITUTES === */
.widget-desktop { display: block; }
.widget-mobile { display: none; }

@media (max-width: 768px) {
  .widget-desktop { display: none !important; }

  .widget-mobile {
    display: block;
    text-align: center;
    margin: 20px auto 40px;
    padding: 0 20px;
  }

  .widget-mobile img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .widget-mobile img:hover {
    transform: scale(1.01);
  }

  .hero-slider-section {
    height: auto !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .slider-frame.mobile-slider {
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .slider-frame.mobile-slider .slider-track img {
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .map-info {
  font-size: 0.75rem !important;
  text-align: center;

    font-size: 0.85rem !important;
    color: #6b7280 !important;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .slider-frame.mobile-slider .slider-track {
    animation-name: scrollMobileSlider !important;
    animation-duration: 20s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}
.top-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 20px;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
.top-menu-container .logo {
    display: block;
  }
  
  .logo img {
height: 40px !important;
width: auto !important;  }

  .top-menu-container {
    padding: 10px 60px;
    height: 55px;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-slider-section {
    padding-top: 55px !important;
  }
}

