/* Reset și bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

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

/* Utilități */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

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

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

.mb-4 {
    margin-bottom: 1rem;
}

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

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

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

.mt-8 {
    margin-top: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.w-24 {
    width: 6rem;
}

.w-full {
    width: 100%;
}

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

.max-w-3xl {
    max-width: 48rem;
}

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

.flex {
    display: flex;
}

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

.items-start {
    align-items: flex-start;
}

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

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

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

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.grid {
    display: grid;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

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

.grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.border-b {
    border-bottom: 1px solid #e5e7eb;
}

.border-t {
    border-top: 1px solid #e5e7eb;
}

.border {
    border: 1px solid #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-gray-800 {
    border-color: #1f2937;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

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

.bg-purple-50 {
    background-color: #f5f3ff;
}

.bg-pink-100 {
    background-color: #fce7f3;
}

.bg-purple-100 {
    background-color: #ede9fe;
}

.bg-yellow-100 {
    background-color: #fef3c7;
}

.bg-green-100 {
    background-color: #d1fae5;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-orange-100 {
    background-color: #ffedd5;
}

.bg-gray-900 {
    background-color: #111827;
}

.text-white {
    color: #ffffff;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-700 {
    color: #374151;
}

.text-pink-400 {
    color: #f472b6;
}

.text-pink-600 {
    color: #db2777;
}

.text-purple-600 {
    color: #9333ea;
}

.text-yellow-600 {
    color: #d97706;
}

.text-green-600 {
    color: #059669;
}

.text-blue-600 {
    color: #2563eb;
}

.text-orange-600 {
    color: #ea580c;
}

.font-medium {
    font-weight: 500;
}

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

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

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

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

.text-xl {
    font-size: 1.25rem;
}

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

.text-4xl {
    font-size: 2.25rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.overflow-hidden {
    overflow: hidden;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-pink-600:hover {
    color: #db2777;
}

.hover\:bg-pink-700:hover {
    background-color: #be185d;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-40 {
    z-index: 40;
}

.z-10 {
    z-index: 10;
}

.-z-10 {
    z-index: -10;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.object-cover {
    object-fit: cover;
}

/* Header */
header {
    height: 4rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav a {
    margin-left: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: #db2777;
}

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

.logo img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #db2777;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #db2777;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #be185d;
}

.btn-outline {
    background-color: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    background-color: #f3f4f6;
}

.btn-white {
    background-color: white;
    color: #db2777;
    border: none;
}

.btn-white:hover {
    background-color: #f3f4f6;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
}

.btn-full {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #fef3c7, #fce7f3);
    opacity: 0.7;
    z-index: -10;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #db2777;
}

.hero h1 span {
    color: #9333ea;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.125rem;
    color: #374151;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    max-width: 48rem;
    margin: 2rem auto 0;
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.feature-card i {
    margin-right: 0.5rem;
    color: #db2777;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section.bg-purple-50 {
    background-color: #f5f3ff;
}

section.bg-gradient {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
}

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

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 42rem;
    margin: 0 auto;
    color: #374151;
}

/* About Section */
.about-content {
    display: grid;
    gap: 2rem;
}

.about-image {
    height: 400px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #374151;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.about-features .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #d1fae5;
    border-radius: 9999px;
    margin-right: 0.5rem;
}

.about-features .icon-wrapper i {
    color: #059669;
    font-size: 0.75rem;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.program-card-body {
    padding: 1.5rem;
}

.program-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.program-icon i {
    font-size: 1.5rem;
}

.program-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Schedule Section */
.schedule-card {
    max-width: 48rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.schedule-card-body {
    padding: 1.5rem;
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.schedule-header-left {
    display: flex;
    align-items: center;
}

.schedule-header-left i {
    margin-right: 0.5rem;
    color: #db2777;
}

.schedule-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: #9333ea;
    margin-bottom: 1rem;
}

.schedule-item {
    display: flex;
    margin-bottom: 0.75rem;
}

.schedule-time {
    width: 6rem;
    font-weight: 500;
}

/* Specific black styling for lunch and free play icons */
.fas.fa-utensils,
.fas.fa-child {
    color: #000000 !important;
}

/* Override any text color classes for these specific icons */
.text-red-600.fas.fa-utensils,
.text-indigo-600.fas.fa-child,
.text-orange-600.fas.fa-utensils {
    color: #000000 !important;
}

/* Also override in schedule icon backgrounds */
.schedule-fun-icon .fas.fa-utensils,
.schedule-fun-icon .fas.fa-child {
    color: #000000 !important;
}

/* Team Section - Enhanced with Adaptive Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

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

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

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-info .role {
    color: #6b7280;
    margin-bottom: 0.75rem;
}

/* Adaptive classes for team cards based on image dimensions */
.team-card.portrait {
    grid-row: span 2;
}

.team-card.landscape {
    grid-row: span 1;
}

.team-card.square {
    grid-row: span 1;
}

.team-card.panoramic {
    grid-column: span 2;
}

/* Responsive adjustments for team grid */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .team-card.panoramic {
        grid-column: span 1; /* Disable panoramic spanning on tablet */
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .team-card.portrait {
        grid-row: span 1; /* Normalize portrait on mobile */
    }
    
    .team-card.panoramic {
        grid-column: span 1; /* Disable panoramic spanning on mobile */
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-card.portrait {
        grid-row: span 1;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

/* Animation delays for staggered appearance */
.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adaptive card classes for different image dimensions - more subtle */
.gallery-item.portrait {
    grid-row: span 1;
}

.gallery-item.landscape {
    grid-row: span 1;
}

.gallery-item.square {
    grid-row: span 1;
}

.gallery-item.panoramic {
    grid-column: span 2;
}

/* Responsive adjustments - maintain 4 columns but adjust on smaller screens */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.3rem;
    }
    
    .gallery-item.panoramic {
        grid-column: span 1; /* Disable panoramic spanning on mobile */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.testimonial-avatar span {
    font-weight: 700;
}

.testimonial-author h4 {
    font-weight: 700;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #374151;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    color: #db2777;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

.contact-item-content h3 {
    font-weight: 500;
}

.contact-item-content p {
    color: #374151;
    margin-bottom: 0;
}

.contact-form {
    background-color: #f5f3ff;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
}

textarea.form-control {
    resize: vertical;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: white;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f472b6;
}

.footer-about {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-contact li i {
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }

    .about-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

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

    /* .team-grid uses adaptive system - don't override */
    /* .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    } */

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

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

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .py-24 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .programs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* .team-grid uses adaptive system - don't override */
    /* .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    } */

    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Gallery uses intelligent masonry layout - adapts automatically */
}

@media (max-width: 767px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .btn-header {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}
.logo-text {
    font-size: 2rem; /* 32px, increased from likely 1.5rem or 24px */
    font-weight: 600; /* Matches existing bold styling */
}

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

img:not([src]), img[src=""] {
    display: none;
}/* Adaugă aceste stiluri în styles.css */

/* Enhanced About Section Button */
.about-detailed-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

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

.about-detailed-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.about-detailed-btn:hover::before {
    left: 100%;
}

.about-detailed-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Animation pentru butonul About */
@keyframes aboutBtnPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.5);
    }
}

.about-detailed-btn.pulse {
    animation: aboutBtnPulse 2s ease-in-out infinite;
}

/* Responsive pentru butonul About */
@media (max-width: 768px) {
    .about-detailed-btn {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Animation delays for staggered appearance - team cards */
.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }