/* ============================================
   Modern CSS Variables & Color Palette
   Clean Grey, Orange, Red Theme
============================================ */
:root {
    /* Primary Colors - Orange to Red Gradient */
    --primary-orange: #ff6b35;
    --primary-red: #d32f2f;
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #d32f2f 100%);
    
    /* Grey Tones - Clean & Professional */
    --grey-dark: #2d3748;
    --grey-medium: #4a5568;
    --grey-light: #718096;
    --grey-lighter: #cbd5e0;
    --grey-lightest: #f7fafc;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2d3748;
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    
    /* Text Colors */
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #718096;
    
    /* Shadows - Clean & Subtle */
    --shadow-sm: 0 2px 8px rgba(45, 55, 72, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 55, 72, 0.12);
    --shadow-lg: 0 10px 30px rgba(45, 55, 72, 0.15);
    --shadow-xl: 0 20px 50px rgba(45, 55, 72, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* ============================================
   Base Styles - Clean Reset
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}




/* Bemutatkozás - három oszlop */
.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr 0.8fr; /* kép, szöveg, statisztika */
    gap: 2rem;
    align-items: start;
}
.intro-credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}
.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.credential-item strong {
    font-size: 8px;
}
.intro-image {
    text-align: center;
}
.cred-title-too-long {
    font-size: 6px !important; 
}
.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10%;  /* opcionális lekerekítés */
    
}
.intro-description {
    line-height: 1.4;
    color: var(--text-secondary);
    overflow-y: auto;
    height: 350px;
    white-space: pre-line; /* megtartja a sortöréseket */
}



/* Mobilos nézet (768px alatt) */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr; /* egymás alá */
        gap: 1.5rem;
    }
    
    .intro-image {
        max-width: 80%;
        margin: 0 auto;
    }
}
/* Center the stats (500+, 25+, 100%) if they are inside this div */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}



/* ============================================
   Loading Screen - Clean Animation
============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
}

.fire-loader {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.flame {
    width: 20px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1.5s infinite alternate;
}

.flame:nth-child(1) { animation-delay: 0s; }
.flame:nth-child(2) { animation-delay: 0.3s; }
.flame:nth-child(3) { animation-delay: 0.6s; }

@keyframes flicker {
    0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
    50% { transform: scaleY(1.2) translateY(-10px); opacity: 0.8; }
}

.loader-text {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ============================================
   Navigation - Clean & Modern
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-normal);
}
.navbar .nav-link, 
.navbar .logo-text,
.navbar .nav-toggle span {
    color: var(--text-primary);      /* dark grey */
    background-color: white; /* dark grey for hamburger bars */
    transition: all 0.3s ease;
}
.navbar .nav-link {
    background-color: transparent; /* Ensure nav links have transparent background */
    color:white;
}
/* Scrolled state - This class is added by JavaScript */
.navbar.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

/* Change text and hamburger color when scrolled */
.navbar.scrolled .nav-link,
.navbar.scrolled .logo-text {
    color: var(--text-primary) !important;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary) !important;
}

/* Handle hover state while scrolled */
.navbar.scrolled .nav-link:hover {
    color: var(--primary-orange) !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--spacing-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-logo {
    color: var(--text-primary);
}

.nav-logo i {
    font-size: 1.6rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: black;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-toggle span {
    background: var(--grey-dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section - Clean & Impactful
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('tűz 137.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(74, 85, 104, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
    color: rgb(214, 64, 64);
}

.hero-title-line {
    display: block;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: rgb(200, 70, 70);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Hero Title Image Wrapper */
/* Hero Title Image Wrapper */
.hero-title-wrapper {
    display: flex;
    align-items: center;     
    justify-content: center;
    gap: 5rem; /* This pushes the images further out to the sides */
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.hero-title-wrapper h1 {
    white-space: nowrap; /* This forces the text to ALWAYS stay on one line */
}

.hero-side-image {
    width: 300px; 
    height: 300px;
    object-fit: cover;
    border-radius: 50%; 
    border: 2px solid var(--primary-orange);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    
    /* This moves the images lower. Increase or decrease the '30px' to adjust the height */
    transform: translateY(70px); 
}

/* Make sure it fits nicely on smaller laptop screens before it hides on mobile */
@media (max-width: 1024px) {
    .hero-title-wrapper {
        gap: 2rem; /* Reduces the gap on smaller screens so it doesn't overflow */
    }
    .hero-side-image {
        width: 110px;
        height: 110px;
        transform: translateY(20px);
    }
}

/* Hide the images completely on mobile */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    .hero-title-wrapper h1 {
        white-space: normal; /* Allows text to wrap normally on phones if needed */
    }
}
/* ============================================
   Buttons - Clean & Modern
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Scroll Indicator
============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ============================================
   Sections - Clean Layout
============================================ */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    color: var(--primary-orange);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 1.5rem auto;
    border-radius: var(--radius-full);
}

/* ============================================
   About Section
============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-orange);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
   
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}
.stat-card{
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid var(--grey-lighter);

}
.stat-card:hover {
    border-color: var(--primary-orange);
    /* Orange glow shadow */
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.365);
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-item i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ============================================
   Qualifications Section - Modern Glow Design
============================================ */
.qual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.qual-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--grey-lighter);
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content */
    text-align: center;
    overflow: hidden; /* For the hover effect */
}

/* The Orange Shadow & Hover Effect */
.qual-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-orange);
    /* Orange glow shadow */
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
}

/* Accent top line that grows on hover */
.qual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-gradient);
    transition: width 0.4s ease;
}

.qual-card:hover::before {
    width: 100%;
}

.qual-icon {
    width: 80px;
    height: 80px;
    background: var(--grey-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border: 1px solid var(--grey-lighter);
}

.qual-icon i {
    font-size: 2.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qual-card:hover .qual-icon {
    background: var(--primary-gradient);
    transform: rotateY(360deg);
}

.qual-card:hover .qual-icon i {
    -webkit-text-fill-color: white;
}

.qual-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

/* Lines between the list items */
.qual-list {
    list-style: none;
    width: 100%;
    margin-top: 1rem;
}

.qual-list li {
    padding: 1rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06); /* Subtle line */
    transition: all 0.3s ease;
}

.qual-list li:last-child {
    border-bottom: none; /* No line after the last item */
}

/* Hover effect for specific items in the list */
.qual-list li:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

/* ============================================
   RESPONSIVE (Phones & Tablets)
============================================ */
@media (max-width: 992px) {
    .qual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 650px) {
    .qual-grid {
        grid-template-columns: 1fr;
    }
    
    .qual-card {
        padding: 2rem 1.5rem;
    }
}
/* ============================================
   Services Section
============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Gallery Section
============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(211, 47, 47, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
}
/* Make the "see all" button bigger and centered */
.gallery-more-link {
    text-align: center;        /* centers the inline-block link */
    margin-top: 2rem;          /* optional: add some space above */
}

.gallery-more-link a {
    display: inline-block;     /* allows padding and transforms */
    padding: 0.5rem 2.5rem;      /* bigger click area (adjust as needed) */
    font-size: 1.2rem;         /* larger text */
    font-weight: 600;
    color: #ffffff;
    background: var(--primary-gradient);  /* orange-red gradient */
    border-radius: var(--radius-full);    /* fully rounded pill shape */
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.gallery-more-link a:hover {
    transform: translateY(-3px);          /* lift on hover */
    box-shadow: var(--shadow-lg);
    background: var(--primary-gradient);  /* keep the same gradient, or darken if desired */
}

/* Optional: adjust padding on smaller screens */
@media (max-width: 768px) {
    .gallery-more-link a {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}
/* ============================================
   Lightbox
============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--grey-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    background: var(--primary-orange);
    color: white;
    transform: rotate(90deg);
}

/* ============================================
   Timeline
============================================ */
.works-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.works-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--grey-lighter);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: calc(100% - 3rem);
    margin-right: 3rem;
    transition: var(--transition-normal);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 3rem;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FAQ Section
============================================ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Contact Section
============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-normal);
}

.contact-value:hover {
    color: var(--primary-orange);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Contact Form
============================================ */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--grey-lighter);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer - Clean & Professional
============================================ */
.footer {
    background: rgb(52, 52, 52);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-motto {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--primary-orange);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* ============================================
   Back to Top Button
============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Animations
============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   Responsive Design - Mobile First
============================================ */
@media (max-width: 1024px) {
    .qual-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        color: black !important;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
        color: black !important;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        color: black !important;
        font-size: 1.1rem;
    }
    
    .qual-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
    }
    
    .works-timeline::before {
        left: 0;
    }
    
    .timeline-marker {
        left: 0;
        transform: translateX(0);
    }
    
    .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   Print Styles
============================================ */
@media print {
    .navbar,
    .hero-fire,
    .loader,
    .back-to-top,
    .lightbox {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ============================================
   Fixed Navigation Right Controls
   Clean and Properly Aligned
============================================ */

/* Right Controls Container */
.nav-right-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Theme Switcher - Clean & Modern */
.theme-switcher {
    position: relative;
}

.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: white;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.theme-btn i {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.theme-btn:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-btn:hover::before {
    opacity: 0.2;
}

.navbar.scrolled .theme-btn {
    background: rgba(45, 55, 72, 0.05);
    border-color: rgba(45, 55, 72, 0.1);
    color: var(--text-primary);
}

.navbar.scrolled .theme-btn::before {
    background: var(--primary-gradient);
}

.navbar.scrolled .theme-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
}

.theme-btn .fa-moon {
    display: block;
}

.theme-btn .fa-sun {
    display: none;
}

body.dark-theme .theme-btn .fa-moon {
    display: none;
}

body.dark-theme .theme-btn .fa-sun {
    display: block;
    color: #FFD700; /* Gold color for sun */
}

/* Language Switcher - Clean & Professional */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition-normal);
    min-width: 80px;
    justify-content: center;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.navbar.scrolled .language-btn {
    background: rgba(45, 55, 72, 0.05);
    border-color: rgba(45, 55, 72, 0.1);
    color: var(--text-primary);
}

.navbar.scrolled .language-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

#currentFlag {
    display: inline-block;
    min-width: 20px;
    text-align: center;
    font-size: 1rem;
}

.language-btn i {
    font-size: 0.7rem;
    transition: transform var(--transition-normal);
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid var(--grey-lighter);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    border-bottom: 1px solid var(--grey-lighter);
    background: white;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(211, 47, 47, 0.05) 100%);
    color: var(--primary-orange);
}

.language-option.selected {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
    color: var(--primary-orange);
    font-weight: 600;
}

.flag-icon {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .nav-right-controls {
        position: absolute;
        right: 4rem; /* Make space for the hamburger menu */
        top: 50%;
        transform: translateY(-50%);
        gap: 0.5rem;
    }
    
    .theme-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .language-btn {
        min-width: 70px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    #currentFlag {
        font-size: 0.9rem;
        min-width: 18px;
    }
    
    .language-dropdown {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .nav-right-controls {
        right: 3.5rem;
    }
    
    .language-btn span:not(.flag-icon) {
        display: none; /* Hide text, show only flag on very small screens */
    }
    
    .language-btn {
        min-width: auto;
        width: 35px;
        height: 35px;
        padding: 0;
        justify-content: center;
    }
    
    .language-btn i {
        display: none; /* Hide chevron on very small screens */
    }
}


/* ============================================
   GALLERY PAGE SPECIFIC STYLES
============================================ */
.gallery-header {
    background: linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0 4rem;
    margin-bottom: 0;
}

.gallery-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.gallery-label-section {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-light);
}

.gallery-label {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    padding: 20px;
}

.gallery-full-section {
    padding: 4rem 0;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gallery-filename {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
}

/* Empty gallery state */
.empty-gallery {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

.empty-gallery p {
    font-size: 1.2rem;
}

/* Lightbox improvements */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 500px;
}

.lightbox-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.lightbox-filename {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--primary-gradient);
    color: white;
    transform: rotate(90deg);
}

/* Loader animation fix */
.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: 1.5rem;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: var(--primary-gradient);
    transition: width 1.2s ease-in-out;
    border-radius: var(--radius-full);
}

/* Fire loader animation */
.fire-loader {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    height: 80px;
    margin-bottom: 1rem;
}

.flame {
    width: 20px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50% 50% 0 0;
    animation: flicker 1s ease-in-out infinite;
}

.flame:nth-child(1) {
    animation-delay: 0s;
}

.flame:nth-child(2) {
    animation-delay: 0.3s;
    height: 50px;
}

.flame:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes flicker {
    0%, 100% {
        transform: scaleY(1) scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(1.2) scaleX(0.9);
        opacity: 0.8;
    }
}

.loader-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

/* Responsive gallery */
@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2.2rem;
    }
    
    .gallery-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }
}
