.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920")
            center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.social-link:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: 3px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.menu-btn i {
    transition: transform 0.3s ease;
}

.menu-btn:hover i {
    transform: translateX(5px);
}

.about-section {
    padding: 5rem 0;
    background: #000;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.about-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-card p {
    color: #999;
    line-height: 1.8;
    font-size: 1rem;
}

.gallery-section {
    padding: 0;
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.reviews-section {
    padding: 5rem 0;
    background: #000;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.location-section {
    padding: 5rem 0;
    background: #000;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-info {
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    background: rgba(196, 30, 58, 0.1);
}

.location-info h2 {
    color: white;
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.location-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.location-info strong {
    color: white;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: #000;
}

.footer-grid {
    padding-top: 3rem;
}

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-bottom p {
    color: #999;
}

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

.footer-social a {
    background: var(--primary);
}

.footer-social a:hover {
    background: var(--primary-dark);
    color: white;
}

.footer-bottom {
    border-top-color: #333;
}

.payment-methods img,
.payment-methods i {
    filter: brightness(0.7);
}

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

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

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

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

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

    .location-info h2 {
        font-size: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.4rem;
    }
}
