.hero-banner {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&q=80');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

/* Content Cards */
.feature-card {
    background: var(--dark-gray);
    border-radius: 0;
    border-left: 3px solid var(--gold);
    padding: 30px;
    height: 100%;
    transition: 0.4s;
}

.feature-card:hover {
    background: #252525;
    transform: translateY(-5px);
}

/* Portfolio Highlights */
.heritage-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 25px;
    margin-bottom: 20px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}
:root {
    --gold: #D4AF37;
    --dark-gray: #1a1a1a;
    --deep-black: #0a0a0a;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-black);
    color: white;
}

.gold-text { color: var(--gold); }
.playfair { font-family: 'Playfair Display', serif; }
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    letter-spacing: 2px;
}

.btn-atras {
    background-color: var(--primary-gold);
    color: black;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 0;
    transition: 0.3s;
}

.btn-atras:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.section-padding { padding: 80px 0; }

.service-card {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    height: 100%;
    transition: 0.4s;
}

.service-card:hover {
    border-color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.05);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, black);
    padding: 20px;
    opacity: 0;
    transition: 0.5s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.stats-box { border-left: 2px solid var(--primary-gold); padding-left: 20px; }

footer { border-top: 1px solid var(--glass); padding: 40px 0; }
.atras-navbar {
    background-color: #101215 !important;
    padding-top: 1.5rem;   /* Top padding to match image spacing */
    padding-bottom: 1.5rem; /* Bottom padding to match image spacing */
}

/* Styling the center links (typography and color) */
.atras-navbar .nav-link {
    color: rgba(255, 255, 255, 0.75); /* Muted white */
    text-transform: uppercase;
    font-size: 0.85rem;   /* Smaller, professional font size */
    font-weight: 700;     /* Bold as seen in the image */
    letter-spacing: 1px;  /* Match the spacing between letters */
    transition: color 0.3s;
}

/* Highlighted link color from image_0.png */
.atras-navbar .nav-link.active,
.atras-navbar .nav-link:hover {
    color: #4a9fc1 !important; /* The precise blue color */
}

/* Positioning and sizing social icons */
.atras-navbar .social-icons {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between icons */
}

.atras-navbar .social-link {
    color: #ffffff; /* Social icons are pure white */
    font-size: 1.1rem; /* Adjusting the size to match */
    transition: opacity 0.3s;
}

.atras-navbar .social-link:hover {
    opacity: 0.7;
}

/* RESPONSIVE OVERRIDES (MOBILE/TABLET) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #101215;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .navbar-nav {
        width: 100%;
        margin-top: 15px;
    }
    .atras-navbar .social-icons {
        margin-top: 20px;
        justify-content: center; /* Center icons on mobile */
    }
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('./style/images/art/about-ba.avif') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    letter-spacing: 2px;
}

.btn-atras {
    background-color: var(--primary-gold);
    color: black;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 0;
    transition: 0.3s;
}

.btn-atras:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.section-padding { padding: 80px 0; }

.service-card {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    height: 100%;
    transition: 0.4s;
}

.service-card:hover {
    border-color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.05);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, black);
    padding: 20px;
    opacity: 0;
    transition: 0.5s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.stats-box { border-left: 2px solid var(--primary-gold); padding-left: 20px; }

footer { border-top: 1px solid var(--glass); padding: 40px 0; }

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h1 {
    color: #38bdf8;
    font-weight: 700;
}

/* Card */
.team-card {
    background: linear-gradient(145deg, #1e293b, #020617);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(56,189,248,0.3);
}

/* Image */
.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Content */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body h5 {
    color: #38bdf8;
    font-weight: 600;
}

.role {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
}

/* Scrollable text */
.content-scroll {
    overflow-y: auto;
    max-height: 250px;
    padding-right: 5px;
}

.content-scroll p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5f5;
}

/* Scrollbar */
.content-scroll::-webkit-scrollbar {
    width: 4px;
}
.content-scroll::-webkit-scrollbar-thumb {
    background: #38bdf8;
    border-radius: 10px;
}


