/* ==========================================================================
   MIRAWA RESTAURANT STYLES
   ========================================================================== */

/* ==========================================================================
   1. BASE STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #f5f5f5;
    font-family: 'Noto Sans SC', 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */

header {
    background: #1a1a1a;
    color: #fff;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.3),
        inset 0 -1px 0 rgba(217, 183, 79, 0.2);
    border-bottom: 1px solid rgba(217, 183, 79, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

.logo a {
    outline: none;
    text-decoration: none;
}

.logo a:focus {
    outline: none;
    box-shadow: none;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d9b74f, #c9972b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover,
nav ul li a:focus {
    color: #d9b74f;
    text-shadow: 0 0 8px rgba(217, 183, 79, 0.3);
}

nav ul li a:hover::after,
nav ul li a:focus::after {
    width: 100%;
}

/* Flag Links */
.flag-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.flag-link {
    display: flex;
    align-items: center;
    padding: 3px;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
}

.flag-link img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.flag-link:hover,
.flag-link:focus {
    transform: scale(1.1);
    background: rgba(217, 183, 79, 0.1);
}

.flag-link:hover img,
.flag-link:focus img {
    box-shadow: 0 2px 8px rgba(217, 183, 79, 0.3);
}

.flag-link::after {
    display: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(217, 183, 79, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 15px 25px;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 3px 0;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
    background: rgba(217, 183, 79, 0.2);
    color: #d9b74f;
    text-shadow: 0 0 8px rgba(217, 183, 79, 0.3);
}

/* ==========================================================================
   3. CAROUSEL SECTION
   ========================================================================== */

.hero-image {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    text-align: center;
    border-bottom: 1px solid rgba(217, 183, 79, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

/* Home Header Section */
.home-header {
    padding: 80px 0 20px 0;
    text-align: center;
}

.home-header h1 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 40px;
    color: #d9b74f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    text-align: center;
}

.home-header h1::before,
.home-header h1::after {
    content: '✦';
    font-size: 0.6em;
    color: #c9972b;
    margin: 0 20px;
    opacity: 0.8;
}

.large-image-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.large-image-carousel .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.carousel-slide {
    display: none;
    text-align: center;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    padding: 0;
    margin-top: -30px;
    color: #d9b74f;
    font-weight: bold;
    font-size: 28px;
    transition: all 0.3s ease;
    user-select: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(217, 183, 79, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover,
.prev:focus, .next:focus {
    background: rgba(217, 183, 79, 0.2);
    border-color: #d9b74f;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(217, 183, 79, 0.3);
    outline: none;
}

/* Dots/Indicators */
.carousel-dots {
    text-align: center;
    padding: 30px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #d9b74f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot.active::after, .dot:hover::after {
    width: 8px;
    height: 8px;
}

.dot.active, .dot:hover {
    border-color: rgba(217, 183, 79, 0.5);
    transform: scale(1.2);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.hero {
    padding: 0px 0 120px 0;
    text-align: center;
    background: none;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -10px) rotate(1deg); }
    66% { transform: translate(10px, -5px) rotate(-1deg); }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 30px 20px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(217, 183, 79, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-text h1 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: #d9b74f;
    position: relative;
}

.hero-text h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d9b74f, #c9972b);
    margin: 20px auto;
    border-radius: 2px;
}

.hero-text p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 20px;
    line-height: 1.9;
    opacity: 0.95;
    color: #e8e8e8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-text p:first-of-type {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.hero-text p strong {
    color: #d9b74f;
    font-weight: 600;
}

.btn-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(135deg, #d9b74f 0%, #c9972b 100%);
    color: #1a1a1a;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 
        0 6px 20px rgba(217, 183, 79, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover, .btn:focus {
    background: linear-gradient(135deg, #e5c45a 0%, #d4a635 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(217, 183, 79, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:hover::before, .btn:focus::before {
    left: 100%;
}

.btn:focus {
    outline: none;
    box-shadow: 
        0 10px 30px rgba(217, 183, 79, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Take Away Options */
.take-away-options {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.take-away-option {
    display: inline-block;
    width: 220px;
    height: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 15px;
    text-indent: -9999px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(217, 183, 79, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.take-away-option.phone {
    text-indent: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #d9b74f;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background-image: none;
    height: auto;
    min-height: 70px;
    padding: 10px;
}

.phone-discount {
    font-size: 11px;
    font-weight: 400;
    color: #f0f0f0;
    margin-top: 5px;
    opacity: 0.9;
}

.take-away-option:hover,
.take-away-option:focus {
    transform: scale(1.08) translateY(-2px);
    border-color: #d9b74f;
    background-color: rgba(217, 183, 79, 0.1);
    box-shadow: 0 8px 25px rgba(217, 183, 79, 0.3);
    outline: none;
}

.foodora {
    background-image: url('../images_2/utils/foodora_logo_2.PNG');
    background-size: 120%;
}

.wolt {
    background-image: url('../images_2/utils/wolt_logo_2.PNG');
}

/* ==========================================================================
   5. MENU PREVIEW SECTION
   ========================================================================== */

.menu-preview {
    padding: 100px 0;
    background: none;
    position: relative;
    overflow: hidden;
}

.menu-preview::before {
    display: none;
}

@keyframes shine {
    0% { transform: translateX(-100px) translateY(-100px); }
    100% { transform: translateX(100px) translateY(100px); }
}

.menu-preview h2 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 60px;
    text-align: center;
    color: #d9b74f;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-preview h2::before,
.menu-preview h2::after {
    content: '✦';
    font-size: 0.6em;
    color: #c9972b;
    margin: 0 20px;
    opacity: 0.8;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(217, 183, 79, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 183, 79, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(217, 183, 79, 0.4);
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item-img {
    flex: 0 0 280px;
    margin-right: 30px;
}

.menu-item-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color: #333;
}

.menu-item-details {
    flex: 1;
}

.menu-item-details h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    margin-bottom: 18px;
    color: #d9b74f;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.menu-item-details p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    color: #e8e8e8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.menu-preview .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ==========================================================================
   6. ABOUT PREVIEW SECTION
   ========================================================================== */

.about-preview {
    padding: 80px 0;
    text-align: center;
}

.about-preview h2 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 40px;
    color: #d9b74f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.about-preview h2::before,
.about-preview h2::after {
    content: '✦';
    font-size: 0.6em;
    color: #c9972b;
    margin: 0 20px;
    opacity: 0.8;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
    text-align: left;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(217, 183, 79, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

.about-preview p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */

footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #f0f0f0;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(217, 183, 79, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d9b74f, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #d9b74f;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d9b74f;
    text-shadow: 0 0 8px rgba(217, 183, 79, 0.3);
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background: rgba(217, 183, 79, 0.3);
    border: 1px solid #d9b74f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 183, 79, 0.2);
}

.social-media img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* ==========================================================================
   8. RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .menu-item-img {
        margin-right: 0;
        margin-bottom: 25px;
        flex: none;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .take-away-options {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .prev, .next {
        width: 55px;
        height: 55px;
        margin-top: -27px;
        font-size: 22px;
    }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .hero::before {
        display: none;
    }

    .menu-preview::before {
        display: none;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-image {
        flex: none;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-content {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .menu-preview,
    .about-preview {
        padding: 70px 0;
    }

    .carousel-slide img {
        height: 280px;
    }

    .menu-item {
        padding: 25px;
        margin: 0 10px;
    }

    .menu-item-img {
        flex: 0 0 160px;
    }

    .menu-item-img img {
        height: 130px;
        object-position: center;
    }

    .large-image-carousel {
        padding: 40px 0;
    }

    .prev, .next {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        font-size: 20px;
    }

    .take-away-option {
        width: 180px;
        height: 60px;
    }

    header {
        padding: 20px 0;
    }

    .logo img {
        height: 55px;
    }

    .about-image {
        max-width: 280px;
    }

    .about-content {
        gap: 25px;
    }
}

/* ==========================================================================
   9. LOADING ANIMATION
   ========================================================================== */

body:not(.loaded) {
    opacity: 0;
}

body.loaded {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* ==========================================================================
   10. ACCESSIBILITY IMPROVEMENTS
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
a:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6347;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* ==========================================================================
   11. TEAM SECTION
   ========================================================================== */

.team {
    padding: 80px 0;
    background: #252525;
}

.team h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    text-align: center;
    color: #ff6347;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #ff6347;
    background-color: #333;
    filter: brightness(1.1) contrast(1.1);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #ff6347;
    background: linear-gradient(135deg, #ff6347, #ff8c69);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-left: auto;
    margin-right: auto;
}

.team-avatar::before {
    content: attr(data-initials);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff6347;
}

.team-member p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.team-member p:first-of-type {
    font-weight: bold;
    color: #fff;
}