/* Magnolia Coffee and Space - Custom Styles */

/* Brand Colors Override */
:root {
    --magnolia-primary: #978667;
    --magnolia-dark: #262626;
    --magnolia-light: #f8f9fa;
}

/* Button Customization */
.btn_1.gradient {
    background: linear-gradient(45deg, #978667 0%, #b39e7f 100%);
}

.btn_1.gradient:hover {
    background: linear-gradient(45deg, #857655 0%, #a18d6d 100%);
}

/* Hero Section Enhancement */
.hero_single h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Reservation Steps Styling */
.confirmation-details {
    border-left: 4px solid #978667;
}

.success_icon {
    animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Menu Item Cards */
.menu_item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(151, 134, 103, 0.2);
}

/* Cart Dropdown Enhancement */
.dropdown-cart .dropdown-menu {
    min-width: 350px;
}

/* Footer Enhancement */
footer h3 {
    color: #978667;
}

/* Space Cards */
.box_how {
    transition: all 0.3s ease;
}

.box_how:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.box_how figure img {
    transition: transform 0.3s ease;
}

.box_how:hover figure img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero_single h1 {
        font-size: 2rem;
    }

    .dropdown-cart .dropdown-menu {
        min-width: 280px;
    }
}

/* Loading Animation */
.lazy.loading {
    opacity: 0.5;
}

.lazy.loaded {
    opacity: 1;
    transition: opacity 0.3s;
}

/* Custom Alert Styles */
.alert-info {
    background-color: #e8f4f8;
    border-color: #978667;
}

/* Form Enhancement */
.form-control:focus {
    border-color: #978667;
    box-shadow: 0 0 0 0.2rem rgba(151, 134, 103, 0.25);
}

/* Navigation Active State */
.main-menu ul li a.active {
    color: #978667;
}
