/*
Theme Name: Gopal Ji Cafe
Theme URI: https://gopaljicafe.com
Author: Gopal Ji Cafe & Catering
Description: Custom Tailwind-based theme for Gopal Ji Cafe & Catering with event and table bookings.
Version: 1.0.0
Text Domain: gopalji
*/

/* Minimal helpers (most styling comes from Tailwind CDN) */
body {
    font-family: 'Poppins', sans-serif;
    color: #17110D;
}

.hero-bg {
    background-image: linear-gradient(90deg, rgba(42, 22, 15, 0.92), rgba(42, 22, 15, 0.45)), url('https://images.unsplash.com/photo-1626132647523-66f5bf380027?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.pattern-bg {
    background-color: #FFF8ED;
    background-image: radial-gradient(#E3B55E 1px, transparent 1px);
    background-size: 22px 22px;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

input,
textarea,
select {
    color: #17110D;
}

.gopalji-contact-panel {
    background: #2A160F;
    color: #FFFFFF;
}

.gopalji-contact-panel h2,
.gopalji-contact-panel h3,
.gopalji-contact-panel h4,
.gopalji-contact-panel p,
.gopalji-contact-panel li,
.gopalji-contact-panel span {
    color: inherit;
}

.gopalji-contact-panel .text-gray-200,
.gopalji-contact-panel .text-gray-300 {
    color: #F7E8CF;
}

.gopalji-contact-panel .text-amber-500 {
    color: #F6B43B;
}

.instagram-marquee {
    width: 100%;
    overflow: hidden;
}

.instagram-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: instagram-scroll 48s linear infinite;
}

.instagram-track:hover {
    animation-play-state: paused;
}

.instagram-card {
    position: relative;
    display: block;
    width: 260px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 12px;
    background: #2A160F;
    box-shadow: 0 12px 30px rgba(42, 22, 15, 0.16);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

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

.instagram-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.35;
    background: linear-gradient(transparent, rgba(23, 17, 13, 0.92));
}

@keyframes instagram-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .instagram-track {
        animation: none;
        width: auto;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}
