/* Casa Sfântul Laurențiu - Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #FFFFFF !important;
    min-height: 100vh;
}

/* Asigură background alb pe toate dispozitivele */
html {
    background: #FFFFFF !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.star {
    color: #fbbf24;
}

.rating-num {
    font-weight: 600;
    color: #374151;
}

.rating-count {
    color: #6b7280;
}

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

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #191970;
}

.btn-primary {
    background: #191970;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0f0f3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(25, 25, 112, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section - Alb pe toate device-urile */
.hero {
    padding: 160px 1rem 80px;
    background: #FFFFFF !important;
}

/* Mobile optimizat */
@media (max-width: 768px) {
    .hero {
        padding: 120px 1rem 60px;
        background: #FFFFFF !important;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    background: #191970;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
}

.hero-text {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-outline {
    background: transparent;
    color: #191970;
    border: 2px solid #191970;
}

.btn-outline:hover {
    background: #ECEFF1;
}

.hero-info {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
}

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

.info-item svg {
    color: #10b981;
}

.info-item span {
    font-weight: 500;
    color: #374151;
}

.hero-image {
    position: relative;
}

.image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #93c5fd 0%, #86efac 100%);
    border-radius: 24px;
    transform: rotate(3deg);
}

.hero-image img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s;
}

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

/* Sections - Alb pe toate device-urile */
.section {
    padding: 80px 1rem;
    background: #FFFFFF !important;
}

.bg-white {
    background: #FFFFFF !important;
}

.bg-blue,
.bg-gray {
    background: #FFFFFF !important;
}

/* Mobile optimizat */
@media (max-width: 768px) {
    .section {
        padding: 60px 1rem;
        background: #FFFFFF !important;
    }
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #191970;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bg-blue-icon {
    background: #dbeafe;
}

.bg-blue-icon svg {
    color: #2563eb;
}

.bg-green-icon {
    background: #d1fae5;
}

.bg-green-icon svg {
    color: #059669;
}

.bg-amber-icon {
    background: #fef3c7;
}

.bg-amber-icon svg {
    color: #d97706;
}

.bg-purple-icon {
    background: #e9d5ff;
}

.bg-purple-icon svg {
    color: #9333ea;
}

.bg-red-icon {
    background: #fee2e2;
}

.bg-red-icon svg {
    color: #dc2626;
}

.bg-teal-icon {
    background: #ccfbf1;
}

.bg-teal-icon svg {
    color: #0d9488;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-text {
    color: #4b5563;
    line-height: 1.7;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

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

.testimonial-card {
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
}

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

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-cards-grid > :nth-child(4),
.contact-cards-grid > :nth-child(5) {
    grid-column: span 1;
}

@media (min-width: 769px) {
    .contact-cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.contact-card-phone .contact-card-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.contact-card-address .contact-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.contact-card-hours .contact-card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.contact-card-email .contact-card-icon {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
}

.contact-card-whatsapp .contact-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.contact-card-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.contact-card-sub {
    font-size: 0.95rem;
    color: #6b7280;
}

.contact-card-action {
    font-size: 0.875rem;
    color: #191970;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover .contact-card-action {
    opacity: 1;
}

.contact-card-whatsapp:hover {
    background: #25D366;
}

.contact-card-whatsapp:hover .contact-card-label,
.contact-card-whatsapp:hover .contact-card-value,
.contact-card-whatsapp:hover .contact-card-action {
    color: white;
}

.contact-card-whatsapp:hover .contact-card-icon {
    background: white;
    color: #25D366;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.footer-brand > div:last-child h3 {
    margin: 0;
}

.footer-brand .logo {
    background: white;
    padding: 4px;
}

.footer-brand .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 1.25rem;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-rating {
    color: #fbbf24;
}

.footer h4 {
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact svg {
    color: #9ca3af;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.footer-website {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s;
    pointer-events: none;
    z-index: 2000;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    background: #25D366;
    color: white;
    padding: 16px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    /* Asigură background alb pe mobile */
    body,
    html,
    .hero,
    .section,
    .bg-blue,
    .bg-gray,
    .bg-white {
        background: #FFFFFF !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .contact-cards-grid > :nth-child(5) {
        grid-column: span 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-card-icon {
        width: 56px;
        height: 56px;
    }

    .contact-card-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices - background alb forțat */
    body,
    html {
        background: #FFFFFF !important;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}
