/* 
====================================
Snackada - Custom Styles
====================================
Color Palette:
- Primary: #be2f30 (Red)
- Secondary: #54483c (Brown)
- Dark Brown: #512429
- Darker Brown: #4a1b20
- Black: #010101
- Accent: #945330 (Light Brown)
====================================
*/

:root {
    --primary-color: #be2f30;
    --secondary-color: #54483c;
    --dark-brown: #512429;
    --darker-brown: #4a1b20;
    --black: #010101;
    --accent-color: #945330;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Custom Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--darker-brown);
    border-color: var(--darker-brown);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(190, 47, 48, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(190, 47, 48, 0.3);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.nav-link.btn-primary::after {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(190, 47, 48, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(84, 72, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-logo {
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.tagline {
    color: var(--secondary-color);
    letter-spacing: 2px;
}

/* Pulse Animation for Hero Logo */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down a {
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Cards & Hover Effects */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge */
.badge {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Section Spacing */
section {
    position: relative;
}

/* Background Patterns */
.bg-light {
    background-color: var(--light-gray) !important;
}

/* Features List */
.features-list .bi-check-circle-fill {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Info */
.contact-info {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.contact-info:hover {
    background-color: rgba(190, 47, 48, 0.05);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--darker-brown) !important;
}

.hover-link:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.hover-social {
    transition: all 0.3s ease;
}

.hover-social:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border: none;
    opacity: 0;
    transition: all 0.3s ease;
}

#backToTop.show {
    display: flex;
    opacity: 1;
}

#backToTop:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-logo {
        max-width: 300px;
        margin-top: 2rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .scroll-down {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.25rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.6rem 1.5rem !important;
    }
}

/* Loading Animation */
.fade-in {
    animation: fadeInUp 0.8s ease-in-out;
}

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

/* Accessibility */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-down,
    #backToTop,
    footer {
        display: none;
    }
}

/* Performance Optimization */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--darker-brown);
}

/* Selection Color */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ====================================
   FOOD CART SPECIFIC STYLES
   ==================================== */

/* Background Pattern */
.bg-pattern {
    background-color: #fff;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(190, 47, 48, 0.03) 35px, rgba(190, 47, 48, 0.03) 70px);
}

/* Menu Cards */
.menu-card {
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 20px;
}

.menu-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 50px rgba(190, 47, 48, 0.2) !important;
}

.menu-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.menu-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.3s ease;
}

.menu-card:hover .menu-placeholder {
    transform: scale(1.1);
}

/* Badge Styles */
.badge-hot {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd93d 0%, #ffa500 100%);
    color: #4a1b20;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    animation: pulse-badge 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

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

.price-tag {
    font-size: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(190, 47, 48, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.stars i {
    font-size: 1.2rem;
}

.avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.map-placeholder {
    border-radius: 20px;
    overflow: hidden;
}

/* Fun Decorative Elements */
.fun-shape {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}

.fun-shape-1 {
    top: 10%;
    left: 5%;
    font-size: 8rem;
    color: var(--primary-color);
    transform: rotate(-15deg);
}

.fun-shape-2 {
    bottom: 10%;
    right: 5%;
    font-size: 6rem;
    color: var(--accent-color);
    transform: rotate(15deg);
}

/* Enhanced Hero Section for Food Cart */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '🍔';
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 4rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-section::before {
    content: '🍔';
    position: absolute;
    top: 30%;
    right: 10%;
    font-size: 4rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

/* Wavy Divider */
.wave-divider {
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
}

.wave-divider::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

/* Sticker Style Elements */
.sticker-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transform: rotate(-2deg);
    box-shadow: 0 5px 15px rgba(190, 47, 48, 0.3);
    transition: all 0.3s ease;
}

.sticker-badge:hover {
    transform: rotate(2deg) scale(1.05);
}

/* Food Icons Animation */
@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.menu-card:hover i {
    animation: wiggle 0.5s ease-in-out;
}

/* Price Tag Enhancement */
.price-tag {
    position: relative;
    padding: 10px 20px;
    background: rgba(190, 47, 48, 0.05);
    border-radius: 10px;
    display: inline-block;
}

.price-tag::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(190, 47, 48, 0.05);
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--darker-brown) 100%);
}

/* Mobile Food Cart Illustration Area */
.cart-illustration {
    position: relative;
    text-align: center;
    padding: 3rem 0;
}

.cart-illustration::before {
    content: '🛒';
    font-size: 8rem;
    opacity: 0.3;
    display: block;
}

/* Enhanced Button Styles */
.btn-order-now {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--darker-brown) 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(190, 47, 48, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-order-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
}

.btn-order-now:hover::before {
    width: 300px;
    height: 300px;
}

.btn-order-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(190, 47, 48, 0.4);
}

/* Responsive Enhancements for Food Cart Theme */
@media (max-width: 991.98px) {
    .menu-card {
        margin-bottom: 1rem;
    }
    
    .fun-shape {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .menu-image-wrapper {
        height: 150px;
    }
    
    .menu-placeholder {
        font-size: 3rem;
    }
    
    .price-tag {
        font-size: 1.2rem;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
    }
}

/* Instagram Feed Section */
.instagram-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(190, 47, 48, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.instagram-overlay i {
    animation: heartBeat 1s infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

/* Stats Counter (for future use) */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--darker-brown) 100%);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Food Emoji Decorations */
.emoji-decoration {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    pointer-events: none;
    animation: floatEmoji 8s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Quick Info Badges */
.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    margin: 5px;
    transition: all 0.3s ease;
}

.info-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #ffd93d 0%, #ffa500 100%);
    color: var(--darker-brown);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '🎉';
    position: absolute;
    left: 10%;
    font-size: 2rem;
    animation: slideLeft 3s linear infinite;
}

.promo-banner::after {
    content: '🎉';
    position: absolute;
    right: 10%;
    font-size: 2rem;
    animation: slideRight 3s linear infinite;
}

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

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

/* ====================================
   TYPOGRAPHY SECTION STYLES
   ==================================== */

.brand-identity-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.typography-demo {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.demo-text {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.demo-text:hover {
    padding-left: 1rem;
    background: rgba(190, 47, 48, 0.02);
}

.demo-text:last-child {
    border-bottom: none;
}

.font-info {
    background: rgba(190, 47, 48, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.usage-examples .example-item {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.usage-examples .example-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

/* Color Swatches */
.color-swatch {
    height: 120px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.color-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.color-swatch:hover .color-overlay {
    transform: translateY(0);
}

.color-overlay span {
    display: block;
    font-size: 0.9rem;
}

.color-overlay small {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Typography Responsive */
@media (max-width: 767.98px) {
    .demo-text {
        font-size: 1.2rem !important;
    }
    
    .example-item h1 {
        font-size: 2rem !important;
    }
    
    .example-item h3 {
        font-size: 1.5rem !important;
    }
    
    .color-swatch {
        height: 100px;
    }
}

/* ====================================
   PROMOTIONAL SECTION STYLES
   ==================================== */

.promo-card {
    transition: all 0.4s ease;
    border-radius: 20px;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

.promo-image-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 400px;
}

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

.promo-card:hover .promo-image-wrapper img {
    transform: scale(1.05);
}

.promo-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.badge-lg {
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: pulse-promo 2s infinite;
}

@keyframes pulse-promo {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }
}

.promo-details {
    line-height: 1.8;
}

.promo-details p {
    transition: all 0.3s ease;
}

.promo-details p:hover {
    padding-left: 10px;
    background: rgba(190, 47, 48, 0.05);
    border-radius: 5px;
}

.promo-footer {
    border-top: 2px dashed rgba(190, 47, 48, 0.2);
    margin-top: 1rem;
}

.promo-feature {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.promo-feature:hover {
    background: rgba(190, 47, 48, 0.05);
    transform: translateY(-5px);
}

.promo-feature i {
    transition: all 0.3s ease;
}

.promo-feature:hover i {
    transform: scale(1.2) rotate(10deg);
}

.bg-gradient {
    background: linear-gradient(135deg, #ffffff 0%, rgba(190, 47, 48, 0.05) 100%);
}

/* Promotional Banner Styles */
.limited-time-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    animation: blink-banner 2s infinite;
}

@keyframes blink-banner {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Event Badge */
.event-badge {
    position: relative;
    display: inline-block;
}

.event-badge::before {
    content: '🎉';
    position: absolute;
    left: -25px;
    font-size: 1.2rem;
    animation: bounce-emoji 1s infinite;
}

@keyframes bounce-emoji {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Promo Info Cards */
.promo-info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.promo-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(190, 47, 48, 0.15);
}

/* Responsive Promo Section */
@media (max-width: 991.98px) {
    .promo-image-wrapper {
        max-height: 300px;
    }
    
    .badge-lg {
        font-size: 1rem;
        padding: 8px 18px;
    }
    
    .promo-feature {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .promo-image-wrapper {
        max-height: 250px;
    }
    
    .promo-badge-overlay {
        top: 10px;
        right: 10px;
    }
    
    .badge-lg {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .promo-footer .row {
        text-align: center !important;
    }
}

/* ====================================
   VISION & HISTORY SECTION STYLES
   ==================================== */

.vision-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.vision-content {
    padding: 2rem;
}

.vision-points {
    background: rgba(190, 47, 48, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.vision-points .d-flex {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.vision-points .d-flex:hover {
    background: rgba(190, 47, 48, 0.05);
    transform: translateX(10px);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--darker-brown) 100%);
}

.history-timeline {
    position: relative;
    padding-left: 2rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.timeline-icon {
    position: relative;
    z-index: 2;
}

.history-timeline .d-flex {
    position: relative;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.history-timeline .d-flex:hover {
    background: rgba(190, 47, 48, 0.03);
    transform: translateX(10px);
}

.history-timeline .d-flex::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(190, 47, 48, 0.2);
    z-index: 3;
}

/* Blockquote Styling */
blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
}

.blockquote-footer {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.blockquote-footer::before {
    content: "— ";
}

/* Vision & History Responsive */
@media (max-width: 991.98px) {
    .vision-content {
        padding: 1rem;
    }
    
    .vision-points {
        padding: 1.5rem;
    }
    
    .history-timeline {
        padding-left: 1.5rem;
    }
    
    .bg-gradient-primary {
        padding: 3rem 2rem !important;
    }
}

@media (max-width: 767.98px) {
    .vision-points .d-flex:hover {
        transform: translateX(5px);
    }
    
    .history-timeline .d-flex:hover {
        transform: translateX(5px);
    }
    
    .history-timeline::before {
        left: 15px;
    }
    
    .history-timeline .d-flex::before {
        left: -1.5rem;
    }
}

/* Logo Process Section */
.logo-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.logo-wrapper {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.logo-card:hover .logo-wrapper {
    background: #ffffff;
}

.logo-showcase {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Team Section */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #be2f30 0%, #945330 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(190, 47, 48, 0.95), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}
