/* Boucherie Viandes Halal - Styles */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f10;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Transitions */
button, a, input, textarea {
    transition: all 0.3s ease;
}

/* Focus states */
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

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

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

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

.logo img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.logo-text p {
    font-size: 0.75rem;
    color: #d1d5db;
    line-height: 1.2;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.desktop-nav a:hover {
    color: #dc2626;
}

.desktop-btn {
    display: none;
}

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

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #1f2937;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.mobile-menu a:hover {
    color: #dc2626;
}

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

.btn-primary {
    background-color: #dc2626;
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #dc2626;
    color: #ffffff;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
}

.btn-phone:hover {
    background-color: #b91c1c;
}

.btn-block {
    width: 100%;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1597417321971-45e034f7a993?w=1200&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 8rem 1rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    fill: #fbbf24;
}

.rating-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

.divider {
    color: #d1d5db;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo img {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.hero-location .icon {
    color: #dc2626;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.25rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    animation: scroll-pulse 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

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

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.divider-line {
    width: 5rem;
    height: 0.25rem;
    background-color: #dc2626;
    margin: 0 auto 1.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto;
}

/* Products Section */
.products {
    background: linear-gradient(to bottom, #000000, #111827, #000000);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    background-color: #1f2937;
    color: #d1d5db;
}

.filter-btn:hover {
    background-color: #374151;
    color: #ffffff;
}

.filter-btn.active {
    background-color: #dc2626;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.product-price {
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-description {
    color: #9ca3af;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-img {
    height: 12rem;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

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

/* Reviews Section */
.reviews {
    background-color: #000000;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.star-icon.filled {
    fill: #fbbf24;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.rating-text {
    color: #9ca3af;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 90rem;
    margin: 0 auto 3rem;
}

.review-card {
    background-color: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: scale(1.05);
}

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

.review-avatar {
    width: 3rem;
    height: 3rem;
    background-color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.review-author {
    color: #ffffff;
    font-weight: 600;
}

.review-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.google-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.google-link a:hover {
    color: #b91c1c;
}

/* Hours Section */
.hours {
    background: linear-gradient(to bottom, #000000, #111827, #000000);
}

.hours-card {
    max-width: 64rem;
    margin: 0 auto;
    background-color: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: rgba(31, 41, 55, 0.5);
    transition: all 0.3s ease;
}

.hours-item:hover {
    background-color: #1f2937;
}

.hours-item.today {
    background-color: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours-day svg {
    width: 1.25rem;
    height: 1.25rem;
}

.hours-day svg.open {
    color: #10b981;
}

.day-name {
    font-weight: 600;
    color: #d1d5db;
}

.today-badge {
    font-size: 0.75rem;
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.hours-time {
    color: #9ca3af;
    font-weight: 500;
}

.hours-note {
    padding: 1rem;
    background-color: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    color: #fde68a;
    font-size: 0.875rem;
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: #000000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dc2626;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.info-card h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-card p, .info-card a {
    color: #9ca3af;
    font-size: 0.875rem;
}

.info-card a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #dc2626;
}

.contact-form-wrapper {
    background-color: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.contact-form-wrapper h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.form-group textarea {
    resize: none;
}

.map-wrapper {
    max-width: 96rem;
    margin: 0 auto;
    background-color: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid #1f2937;
    border-radius: 0.5rem;
    overflow: hidden;
}

.google-map {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.google-map:hover {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid #1f2937;
    padding: 3rem 0;
}

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

.footer-col h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.footer-logo img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.2;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #dc2626;
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: white;
    stroke: white;
    stroke-width: 2;
}

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

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

.footer-col ul a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #dc2626;
}

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

.contact-list svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 0.125rem;
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

/* Responsive */
@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
    
    .product-images {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
    
    .logo img {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .logo-text h1 {
        font-size: 1.125rem;
    }
    
    .logo-text p {
        font-size: 0.875rem;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    .desktop-btn {
        display: inline-flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-logo img {
        width: 9rem;
        height: 9rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
