/* Responsive Card Grid & Dynamic Height */
.card, .product-card, .feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.card-body .btn,
.card-body .btn-sm,
.card-body .btn-outline-primary,
.card-body .btn-dark,
.card-body .btn-outline-light {
    margin-top: auto;
    align-self: flex-end;
}

/* Responsive grid for cards */
@media (max-width: 991.98px) {
    .row.g-4 > [class*='col-'] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 767.98px) {
    .row.g-4 > [class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Custom Styles for Bakery Website - Black & Golden Theme */

/* Bootstrap Primary Color Override - MUST BE FIRST */
:root {
    --bs-primary: #FFD700 !important;
    --bs-primary-rgb: 255, 215, 0 !important;
    --bs-success: #FFD700 !important;
    --bs-success-rgb: 255, 215, 0 !important;
    --bs-warning: #B8860B !important;
    --bs-warning-rgb: 184, 134, 11 !important;
    --bs-danger: #FFD700 !important;
    --bs-danger-rgb: 255, 215, 0 !important;
    --bs-info: #FFD700 !important;
    --bs-info-rgb: 255, 215, 0 !important;
    --bs-secondary: #1a1a1a !important;
    --bs-secondary-rgb: 26, 26, 26 !important;
    --bs-dark: #000000 !important;
    --bs-dark-rgb: 0, 0, 0 !important;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #B8860B;
    --text-color: #FFD700;
    --light-bg: #1a1a1a;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --black: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    padding-top: 76px;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section - Beautiful Black & Golden */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 80px 0 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.hero-section .row {
    align-items: flex-start;
}

.hero-section .col-lg-6:first-child {
    padding-top: 20px;
}

/* Hero Section Text - White with Golden Accents */
.hero-section .text-white,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

.hero-section .display-3,
.hero-section .display-4,
.hero-section .display-5 {
    color: #FFFFFF !important;
    font-weight: 800;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .lead {
    color: #FFFFFF !important;
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-section .hero-buttons {
    margin-top: 15px;
}

.hero-section p {
    color: #FFFFFF !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-image img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFFFFF;
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

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

.feature-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    border: none;
    color: #000000;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
    color: #000000;
}

/* Cards - Balanced Design */
.card {
    border: 1px solid #e0e0e0 !important;
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: #ffffff !important;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #FFD700 !important;
    transform: translateY(-5px);
}

.card-title {
    color: #000000 !important;
    font-weight: 600;
}

.card-text {
    color: #666666 !important;
}

.card-body {
    color: #333333 !important;
}

/* Map Container */
.map-container {
    border: 3px solid #FFD700;
    background-color: #1a1a1a;
}

/* Blog Content */
.blog-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #FFD700 !important;
}

.blog-content p,
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #FFD700 !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .display-3 {
        font-size: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: #FFD700;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Bootstrap Color Overrides - Black & Golden Theme - FORCE OVERRIDE */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #FFD700 !important;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%) !important;
    border-color: #FFD700 !important;
    color: #000000 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.5) !important;
}

.btn-primary:hover {
    background-color: #B8860B !important;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%) !important;
    border-color: #B8860B !important;
    color: #000000 !important;
}

.text-primary,
.text-primary *,
i.text-primary,
.fas.text-primary,
.far.text-primary,
.fab.text-primary {
    color: #FFD700 !important;
}

.bg-primary,
.bg-primary * {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.btn-outline-primary {
    border-color: #FFD700 !important;
    color: #FFD700 !important;
}

.btn-outline-primary:hover {
    background-color: #FFD700 !important;
    color: #000000 !important;
    border-color: #FFD700 !important;
}

.text-success {
    color: #FFD700 !important;
}

.bg-success {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.text-danger {
    color: #FFD700 !important;
}

.bg-danger {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.text-warning {
    color: #B8860B !important;
}

.bg-warning {
    background-color: #B8860B !important;
    color: #000000 !important;
}

.text-info {
    color: #FFD700 !important;
}

.bg-info {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.bg-secondary {
    background-color: #1a1a1a !important;
    color: #FFD700 !important;
}

.text-secondary {
    color: #1a1a1a !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

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

.card {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
}

.card-body,
.card-title {
    color: #333333 !important;
}

.card-text {
    color: #666666 !important;
}

.card-footer {
    background-color: #ffffff !important;
    border-top: 1px solid #e0e0e0 !important;
}

.bg-dark {
    background-color: #000000 !important;
    color: #FFD700 !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Better text visibility on white backgrounds */
section:not(.hero-section) h1,
section:not(.hero-section) h2,
section:not(.hero-section) h3 {
    color: #000000 !important;
}

section:not(.hero-section) p,
section:not(.hero-section) .lead {
    color: #444444 !important;
}

.text-white {
    color: #ffffff !important;
}

.badge.bg-primary {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.badge.bg-success {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.badge.bg-warning {
    background-color: #B8860B !important;
    color: #000000 !important;
}

.badge.bg-info {
    background-color: #FFD700 !important;
    color: #000000 !important;
}

.badge.bg-secondary {
    background-color: #1a1a1a !important;
    color: #FFD700 !important;
}

/* Navbar Brand Icon */
.navbar-brand .text-primary {
    color: #FFD700 !important;
}

/* Footer */
footer.bg-dark {
    background-color: #000000 !important;
}

footer .text-primary {
    color: #FFD700 !important;
}

/* Hero Section Text */
.hero-section .text-white,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section .lead {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Additional Card Overrides */
.card-img-top {
    border-bottom: 2px solid #FFD700;
}

/* Links */
a {
    color: #FFD700;
}

a:hover {
    color: #B8860B;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Navbar - Golden Background with Black Text */
.navbar,
.navbar-light,
.navbar-dark {
    background-color: #FFD700 !important;
    border-bottom: 3px solid #B8860B;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .navbar-brand,
.navbar-light .navbar-brand,
.navbar-dark .navbar-brand {
    color: #000000 !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar .navbar-brand .text-primary,
.navbar-light .navbar-brand .text-primary,
.navbar-dark .navbar-brand .text-primary {
    color: #000000 !important;
}

.navbar .nav-link,
.navbar-light .nav-link,
.navbar-dark .nav-link {
    color: #000000 !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar-light .nav-link:hover,
.navbar-dark .nav-link:hover {
    color: #B8860B !important;
    font-weight: 600;
}

.navbar .navbar-toggler,
.navbar-light .navbar-toggler,
.navbar-dark .navbar-toggler {
    border-color: #000000;
}

.navbar .navbar-toggler-icon,
.navbar-light .navbar-toggler-icon,
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Heading animation */
@keyframes headlineFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.headline-animate {
    animation: headlineFadeUp 0.9s ease forwards;
}

.navbar-dark {
    background-color: #000000 !important;
}

.navbar-toggler {
    border-color: #FFD700;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sidebar */
.bg-light.sidebar {
    background-color: #f8f9fa !important;
    border-right: 2px solid #FFD700;
}

/* Buttons */
.btn-success {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    border: none;
    color: #000000;
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
    color: #000000;
}

.btn-outline-light {
    border-color: #FFD700;
    color: #FFD700;
}

.btn-outline-light:hover {
    background-color: #FFD700;
    color: #000000;
    border-color: #FFD700;
}

/* Alerts */
.alert-success {
    background-color: #FFD700;
    border-color: #B8860B;
    color: #000000;
}

.alert-danger {
    background-color: #FFD700;
    border-color: #B8860B;
    color: #000000;
}

.alert-warning {
    background-color: #B8860B;
    border-color: #FFD700;
    color: #000000;
}

.alert-info {
    background-color: #FFD700;
    border-color: #B8860B;
    color: #000000;
}

/* Input Groups */
.input-group-text {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #000000;
}

/* Hero Section Buttons */
.hero-section .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%) !important;
    border: 2px solid #FFD700 !important;
    color: #000000 !important;
    font-weight: 600;
    padding: 15px 35px;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%) !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.hero-section .btn-outline-light {
    border: 2px solid #FFFFFF !important;
    color: #FFFFFF !important;
    background-color: transparent !important;
    font-weight: 600;
    padding: 15px 35px;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border-color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Balanced Black & Golden Theme - Text Visibility */

/* Headings - Black for visibility */
h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
    font-weight: 700;
}

h1.display-3,
h1.display-4,
h1.display-5,
h2.display-5 {
    color: #000000 !important;
    font-weight: 800;
}

/* Body Text - Dark Gray for readability */
body,
p,
span,
div,
li,
td {
    color: #333333 !important;
}

/* Lead text */
.lead {
    color: #444444 !important;
    font-weight: 400;
}

/* Card Text */
.card-title {
    color: #000000 !important;
    font-weight: 600;
}

.card-text {
    color: #555555 !important;
}

/* Section Headings with Golden Accent */
section h1,
section h2,
section h3 {
    color: #000000 !important;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #B8860B);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Links - Better visibility */
a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD700 !important;
}

/* Navbar Links */
.navbar .nav-link {
    color: #333333 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: #FFD700 !important;
}

/* Sections - Alternate backgrounds */
section.bg-light {
    background-color: #f8f9fa !important;
}

section:not(.hero-section):not(.bg-light) {
    background-color: #ffffff !important;
}

/* Inputs and Forms - Balanced */
input,
textarea,
select {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-color: #ced4da !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}

input::placeholder,
textarea::placeholder {
    color: #999999 !important;
}

/* Tables */
table,
.table {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.table th {
    background-color: #000000 !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
}

.table td {
    border-color: #e0e0e0 !important;
    color: #333333 !important;
}

/* Feature Cards - Golden Border on Hover */
.feature-card {
    background-color: #ffffff !important;
    border: 2px solid transparent !important;
}

.feature-card:hover {
    border-color: #FFD700 !important;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2) !important;
}

/* Feature-card specific button styling: black background with golden text */
.feature-card .btn-outline-light,
.feature-card .btn {
    background-color: transparent !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
}
.feature-card .btn-outline-light:hover,
.feature-card .btn:hover {
    background-color: #000000 !important;
    color: #FFD700 !important;
    border-color: #000000 !important;
}

/* Product Cards */
.product-card {
    background-color: #ffffff !important;
}

.product-card:hover {
    border-color: #FFD700 !important;
}

/* Modern Footer - Black & Golden Design */
.footer-modern {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: #FFD700;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #B8860B, #FFD700);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.footer-top {
    padding: 70px 0 50px 0;
    position: relative;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Footer Brand */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(77%) sepia(99%) saturate(9999%) hue-rotate(0deg) brightness(1) contrast(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.footer-brand-name {
    color: #FFD700 !important;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-description {
    color: #FFD700 !important;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.whatsapp-icon:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
}

.facebook-icon:hover {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
    color: #FFFFFF;
}

.instagram-icon:hover {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: #FFFFFF;
}

.twitter-icon:hover {
    background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
    color: #FFFFFF;
}

/* Footer Titles */
.footer-title {
    color: #FFD700 !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #B8860B);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #FFD700 !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #FFD700;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF !important;
    transform: translateX(8px);
    opacity: 1;
}

.footer-links a:hover i {
    transform: translateX(3px);
    color: #FFD700;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #FFD700 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item i {
    color: #FFD700 !important;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item span {
    color: #FFD700 !important;
    opacity: 0.9;
}

/* Footer Newsletter */
.footer-newsletter-text {
    color: #FFD700 !important;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-newsletter .input-group {
    display: flex;
    gap: 0;
}

.footer-newsletter .form-control {
    background-color: #1a1a1a;
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    border-radius: 25px 0 0 25px;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.footer-newsletter .form-control:focus {
    background-color: #1a1a1a;
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.footer-newsletter .form-control::placeholder {
    color: #B8860B;
}

.btn-newsletter {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border: 2px solid #FFD700;
    border-left: none;
    border-radius: 0 25px 25px 0;
    color: #000000;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #B8860B, #FFD700);
    color: #000000;
    transform: scale(1.05);
}

/* Footer Hours */
.footer-hours {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.hours-title {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hours-text {
    color: #FFD700 !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.8;
    opacity: 0.9;
}

/* Footer Bottom */
.copyright {
    color: #FFD700 !important;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.payment-text {
    color: #B8860B;
    font-size: 0.9rem;
    margin-right: 5px;
}

.payment-icon {
    color: #FFD700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    color: #B8860B;
    transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 40px 0;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-payment {
        justify-content: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
        margin-bottom: 15px;
    }
}

/* Old Footer Styles - Keep for compatibility */
footer.bg-dark {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: #FFD700;
    border-top: 4px solid #FFD700;
    padding: 60px 0 30px 0 !important;
}

footer h5 {
    color: #FFD700 !important;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    display: inline-block;
}

footer h5 span {
    color: #FFD700 !important;
}

footer h5 img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(99%) saturate(9999%) hue-rotate(0deg) brightness(1) contrast(1) !important;
}

footer .text-primary {
    color: #FFD700 !important;
}

footer .text-muted {
    color: #B8860B !important;
    font-size: 0.95rem;
    line-height: 1.8;
}

footer a {
    color: #B8860B !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

footer a:hover {
    color: #FFD700 !important;
    transform: translateX(5px);
    text-decoration: none;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li i {
    color: #FFD700;
    margin-right: 8px;
    width: 20px;
}

footer hr {
    border-color: #FFD700 !important;
    border-width: 2px;
    opacity: 0.5;
    margin: 40px 0 20px 0 !important;
}

footer .text-center {
    color: #B8860B !important;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

footer .text-center p {
    margin: 0;
    color: #B8860B !important;
}

/* Footer Icons */
footer .fas,
footer .far {
    color: #FFD700 !important;
    font-size: 1.1rem;
}

/* Footer Brand Icon */
footer .fa-birthday-cake {
    color: #FFD700 !important;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Blog Detail Page - Black Text */
.blog-content,
.blog-content p,
.blog-content span,
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #333 !important;
}

article h1,
article p,
article div {
    color: #333 !important;
}

