/* 
* Magdalena Mikurda - Professional Manicure Training
* Main Stylesheet
*/

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #e13d3d;
    --primary-color-light: #ff7171;
    --secondary-color: #800606;
    --secondary-color-light: #ff3434;
    --accent-color: #bb86fc;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --background-color-primary: #e88989;
    --background-color-secondary: #aa1313;
    --foreground: var(--dark-color);
    --muted-foreground: var(--gray-color);
    --border: #e2e2e2;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color-light), var(--primary-color-light));
    --gradient-background: linear-gradient(135deg, var(--background-color-primary), var(--background-color-secondary));
    --gradient-success:  linear-gradient(135deg, #28a745, #218838);
    --gradient-hero: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    --gradient-card: white;
    --instagram-gradient: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);

    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--secondary-color);
}



ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.underline {
    height: 3px;
    width: 70px;
    background: var(--gradient-primary);
    margin: 0 auto;
    margin-top: 0.5rem;
    border-radius: 5px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(187, 134, 252, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(187, 134, 252, 0.4);
    color: white;
}

.btn-raised {
    background: var(--gradient-hero);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* ===== ANIMATIONS ===== */
/* CSS animations replaced with GSAP animations in main.js */

.fade-in {
    opacity: 1; /* Elements visible by default, GSAP will handle animations */
}

.pulse {
    /* Class retained for compatibility, animation handled by GSAP */
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

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

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-link-courses {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.nav-link-courses:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--dark-color);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                linear-gradient(135deg, #ff6b6b, #6b66ff);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
}

.scroll-down-indicator i {
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    }



.profile-placeholder {
    width: 100%;
    max-width: 450px;
    height: 500px;
    background: var(--gradient-background);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.profile-image {
    width: 150%;
    height: auto;
    object-fit: cover;
    margin-top: 3%;
}

.profile-initials {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.profile-placeholder-text {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.placeholder-note {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    color: var(--foreground);
    text-align: center;
    position: relative;
    padding: 5rem 0;
}

.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.counter-item h3 {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== COMMUNITY SECTION ===== */
.community {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.community-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-card {
    transition: transform 0.3s ease;
    display: flex;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card-inner {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.social-card:hover .social-card-inner {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.instagram-gradient {
    background: var(--instagram-gradient);
}

.youtube-gradient {
    background-color: #ff0000;
}

.tiktok-gradient {
    background-color: #000000;
}

.social-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
    width: 100%;
}

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

.community-cta {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(225, 61, 61, 0.2);
}

.community-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.community-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.community-cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
}

.community-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ===== GALLERY SECTION ===== */
.gallery-note {
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--gray-color);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 1rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(225, 61, 61, 0.1);
    transform: translateY(-3px);
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.text-center {
    text-align: center;
}

.placeholder-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Increase carousel height for non-mobile devices */
@media (min-width: 768px) {
    .placeholder-image {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .placeholder-image {
        height: 450px;
    }
}

.placeholder-text {
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.image {
    width: 95%;
    height: 95%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.about-info-badge {
    background: var(--gradient-secondary);
    border-radius: 25px;
    text-align: center;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: 500;
    position: absolute;
    bottom: -5%;
    right: 5%;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.best-option-info-badge {
    background: var(--gradient-success);
    border-radius: 25px;
    text-align: center;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: 500;
    position: absolute;
    top: -24px;
    right: 10px;
    z-index: 4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.05);
}

/* ===== COURSES SECTION ===== */
.courses {
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    color: var(--foreground);
    text-align: center;
    position: relative;
    padding: 5rem 0;
}

.courses .section-header h2 {
    color: var(--foreground);
}

.courses-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* Base grid for ebook displays */
.ebook-grid, .ebooks-grid {
    display: grid;
    gap: 2rem;
}

/* Home page specific grid */
.ebook-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 3rem;
}

.ebook-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Base hover effect for all ebook cards */
.ebook-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Home page specific ebook card styling */
.courses .ebook-card {
    padding: 2rem;
}

.text-card {
    margin-bottom: 1rem;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ebook-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    box-shadow: 0 5px 15px rgba(225, 61, 61, 0.2);
}

.ebook-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.ebook-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.ebook-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.rating i {
    color: #ffc107;
}

.rating-text {
    color: var(--muted-foreground);
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.benefits-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefits-list span {
    color: var(--muted-foreground);
}

.ebook-cta {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(225, 61, 61, 0.2);
    margin-top: 2rem;
}

.ebook-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.ebook-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-outline-light {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: white;
}

/* New Footer Styles */
.bg-foreground {
    background-color: var(--dark-color);
}

.text-background {
    color: white;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.text-center {
    text-align: center;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.md\:text-3xl {
    font-size: 1.875rem;
}

.font-bold {
    font-weight: 700;
}

.text-lg {
    font-size: 1.125rem;
}

.opacity-90 {
    opacity: 0.9;
}

.max-w-2xl {
    max-width: 42rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.grid {
    display: grid;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-2 {
    gap: 0.5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.md\:flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-between {
    justify-content: space-between;
}

.align-center{
    align-items: center;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.bg-background\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.text-primary-glow {
    color: var(--primary-color);
}

.text-left {
    text-align: left;
}

.font-semibold {
    font-weight: 600;
}

.h-6, .w-6 {
    height: 1.5rem;
    width: 1.5rem;
}

.h-8, .w-8 {
    height: 2.5rem;
    width: 2.5rem;
}

.h-4, .w-4 {
    height: 1rem;
    width: 1rem;
}

/* Custom class for Font Awesome icons in footer */
.footer-icon {
    font-size: 1.5rem !important;
    height: auto !important;
    width: auto !important;
}

/* Larger icon size for specific sections */
.footer-icon-lg {
    font-size: 2rem !important;
    height: auto !important;
    width: auto !important;
}

.footer-icon-xl {
    font-size: 3rem !important;
    height: auto !important;
    width: auto !important;
}

.instagram-footer-image {
    margin-bottom: 16px;
    margin-left: 32px;
}

.bg-gradient-to-r.from-purple-600.via-pink-600.to-yellow-500 {
    background-image: linear-gradient(to right, rgb(147, 51, 234), rgb(219, 39, 119), rgb(234, 179, 8));
}

.text-white {
    color: white;
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.bg-white {
    background-color: white;
}

.text-purple-600 {
    color: rgb(147, 51, 234);
}

.hover\:bg-white\/90:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.border-t {
    border-top-width: 1px;
}

.border-background\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.pt-8 {
    padding-top: 2rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
}

.opacity-75 {
    opacity: 0.75;
}

.text-red-400 {
    color: rgb(248, 113, 113);
}

.fill-current {
    fill: currentColor;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        z-index: 1001;
        right: 1.5rem;
        transform: none;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Display contact info in one column on mobile */
    .footer .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    /* Ensure footer bottom section displays in one column on mobile */
    .footer .flex-col.md\:flex-row {
        flex-direction: column !important;
    }
}

@media (max-width: 576px) {
    /* Make counters smaller and display in two columns for mobile */
    .counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .counter-item {
        padding: 1rem;
    }
    
    .counter-item i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .counter {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .counter-item h3 {
        font-size: 0.9rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .background-image {
        top: -16%;
        right: -35%;
        opacity: 16%;
    }
}