/* About Us Page Modern Styles */

:root {
    --primary-color: #d01345;
    --primary-dark: #a60f37;
    --primary-light: #e84a75;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 40px rgba(208, 19, 69, 0.15);
    --gradient-primary: linear-gradient(135deg, #d01345 0%, #ff6b6b 100%);
}

/* General Enhancements */
body {
    overflow-x: hidden;
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Hero Section Refinements */
.menu-hero-section {
    position: relative;
    background-attachment: fixed; /* Parallax effect */
}

.menu-hero-overlay {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-light);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover::before {
    transform: scaleX(1);
}

/* Image Containers with Modern Shapes */
.modern-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.modern-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: var(--gradient-primary);
    border-radius: 30px;
    opacity: 0.1;
    z-index: -1;
    transform: rotate(3deg);
    transition: all 0.5s ease;
}

.modern-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    z-index: -1;
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.modern-image-wrapper:hover::before {
    transform: rotate(6deg) scale(1.05);
}

.modern-image-wrapper:hover::after {
    transform: rotate(-6deg) scale(1.05);
}

.modern-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-image-wrapper:hover .modern-img {
    transform: scale(1.02);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Philosophy Cards Icons */
.philosophy-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(208, 19, 69, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover .philosophy-icon-wrapper {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.philosophy-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.glass-card:hover .philosophy-icon {
    color: white;
    transform: rotateY(-180deg); /* Keep icon facing forward */
}

/* Story Text */
.story-content {
    position: relative;
}

.story-highlight {
    background: linear-gradient(120deg, rgba(208, 19, 69, 0.1) 0%, rgba(208, 19, 69, 0.05) 100%);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-dark);
}

/* CTA Section */
.cta-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(208, 19, 69, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Floating Elements Animation */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.shape-1 { top: 10%; left: 5%; font-size: 10rem; animation: float-slow 8s infinite ease-in-out; }
.shape-2 { bottom: 10%; right: 5%; font-size: 8rem; animation: float-medium 6s infinite ease-in-out; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 2rem;
    }
    
    .modern-image-wrapper::before,
    .modern-image-wrapper::after {
        display: none; /* Simplify on mobile */
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}
