/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* Basic Styles */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    background: #f4f4f4;
    color: #333;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.top-bar {
    background-color: #3b3d3f; 
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .social-icon-link {
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.top-bar .social-icon-link:hover {
    color: #ffc107; 
}

/* Hero Section */
#heroCarousel {
    height: 100vh;
    width: 100%;
}

#heroCarousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

#heroCarousel .hero-img {
    width: 100%; 
    object-fit: cover;
    filter: brightness(60%); 
}

#heroCarousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

#heroCarousel .carousel-caption h2,
#heroCarousel .carousel-caption h4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}
/* Navigation Bar */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

/* Sections */
section {
    padding: 60px 0;
}

/* Specific padding for combo-offers section */
#combo-offers {
    padding: 30px 0;
}

/* Category Cards */
.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

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

.category-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border: 2px solid #ddd;
    transition: transform 0.3s ease;
}

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

/* Combo Offer Cards */
.combo-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
}

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

.combo-card img {
    transition: transform 0.5s ease;
    transform: translateZ(0);
    max-height: 300px; /* Increased image height */
    object-fit: contain;
}

.combo-card:hover img {
    transform: scale(1.1); /* More significant zoom */
}

/* New styles for overlay to show details on hover */
.combo-card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.combo-card:hover .card-body {
    transform: translateY(0);
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem; /* Slightly rounded corners for premium look */
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-text {
    color: #666;
}

/* New Marquee Styling */
.marquee-section {
    background-color: #f8f9fa;
    padding: 20px 0;
    overflow: hidden; 
}

.marquee-content {
    white-space: nowrap;
    animation: marquee-animation 20s linear infinite;
}

/* Individual Marquee Cards */
.marquee-item-card {
    min-width: 250px; 
    height: 150px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.marquee-item-card:hover {
    transform: scale(1.05);
}

.marquee-item-card i {
    font-size: 3rem;
    color: #fff;
}

.marquee-item-card p {
    font-size: 1rem;
    margin-top: 10px;
}

/* Individual colors for each marquee card */
.marquee-content .marquee-item-card:nth-child(1) {
    background: linear-gradient(45deg, #1abc9c, #16a085);
}
.marquee-content .marquee-item-card:nth-child(2) {
    background: linear-gradient(45deg, #3498db, #2980b9);
}
.marquee-content .marquee-item-card:nth-child(3) {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
}
.marquee-content .marquee-item-card:nth-child(4) {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}
.marquee-content .marquee-item-card:nth-child(5) {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}
.marquee-content .marquee-item-card:nth-child(6) {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
}
.marquee-content .marquee-item-card:nth-child(7) {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

/* Animated Footer Styling */
.footer-section {
    background: #1a1a1a;
    color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-text {
    font-size: 1rem;
    color: #ccc;
}

.footer-links {
    padding: 0;
    list-style: none;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color:  #ffc107;
}

.social-icons {
    font-size: 1.5rem;
}

.social-icon-link {
    color: #ccc; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon-link:hover {
    color: #FFD700; 
    transform: scale(1.1);
}

/* Override for top-bar social icons to ensure gold hover */
.top-bar .social-icon-link:hover {
    color: #FFD700; 
}


/* Footer button hover */
.footer-section .btn-outline-light {
    border-color: #fff; /* Default border color */
    color: #fff; /* Default text color */
}

.footer-section .btn-outline-light:hover {
    background-color: #FFD700; /* Gold background on hover */
    border-color: #FFD700; /* Gold border on hover */
    color: #343a40; /* Dark text on hover */
}

/* --- End New Hover Effects and Color Combinations --- */

/* Product Image Styling for Uniformity and Hover Effect */
.card-img-top {
    width: 100%;
    max-height: 250px; /* Set a fixed height for uniformity */
    object-fit: contain; /* Ensure the entire image is visible */
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.card-img-top:hover {
    transform: scale(1.1); /* Scale up the image on hover */
}

/* Header Navigation Link Hover Effect */
.navbar-nav .nav-link {
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #FFD700; /* Golden color for font */
    text-decoration: underline;
    text-decoration-color: #FFD700; /* Golden color for underline */
}