@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #6B0A1E;
    --primary-dark: #4A0512;
    --primary-light: #8B1A32;
    --gold: #D4A84B;
    --gold-light: #E8C878;
    --gold-dark: #B08A2F;
    --cream: #F8F0E8;
    --cream-dark: #EDE4D8;
    --dark: #2D0A10;
    --text-primary: #2D0A10;
    --text-secondary: #5A3A42;
    --text-light: #F8F0E8;
    --shadow-1: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --shadow-3: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    --shadow-4: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    --radius: 4px;
    --radius-lg: 8px;
    --font: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    background-color: var(--primary) !important;
    box-shadow: var(--shadow-3);
    padding: 0.5rem 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gold) !important;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    height: 42px;
    width: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-1);
}

.nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.6rem 1rem !important;
    border-radius: var(--radius);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--gold) !important;
    background-color: rgba(212,168,75,0.12);
}

.nav-link i {
    margin-right: 5px;
    font-size: 1rem;
    vertical-align: middle;
}

.navbar-toggler {
    border: none;
    padding: 0.4rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-section {
    min-height: 100vh;
    background-color: var(--primary-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107,10,30,0.95) 0%, rgba(45,10,16,0.85) 50%, rgba(107,10,30,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-card {
    background-color: rgba(248,240,232,0.95);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-4);
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.hero-card h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-card h1 span {
    color: var(--gold-dark);
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.hero-text strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-text em {
    font-style: italic;
    color: var(--primary-light);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-material {
    border-radius: var(--radius);
    padding: 0.85rem 1.8rem;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-material:hover {
    box-shadow: var(--shadow-3);
    transform: translateY(-2px);
}

.btn-material:active {
    transform: translateY(0);
    box-shadow: var(--shadow-1);
}

.btn-primary-mat {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.btn-primary-mat:hover {
    background-color: var(--gold-light);
    color: var(--primary-dark);
}

.btn-outline-mat {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-mat:hover {
    background-color: var(--primary);
    color: var(--cream);
}

.contact-strip {
    background-color: var(--dark);
    color: var(--cream);
    padding: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-2);
    position: relative;
    z-index: 10;
}

.contact-strip-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-strip-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-strip-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.25s ease;
    font-size: 0.95rem;
}

.contact-strip-links a:hover {
    color: var(--gold);
}

.contact-strip-links i {
    font-size: 1.2rem;
}

.section-card {
    padding: 0;
    position: relative;
}

.mat-card {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: all 0.3s ease;
    height: 100%;
}

.mat-card:hover {
    box-shadow: var(--shadow-3);
    transform: translateY(-4px);
}

.mat-card-img {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.mat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mat-card:hover .mat-card-img img {
    transform: scale(1.08);
}

.mat-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(45,10,16,0.6) 0%, transparent 100%);
}

.mat-card-body {
    padding: 2rem;
}

.mat-card-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-2);
}

.mat-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mat-card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.mat-card-text p {
    margin-bottom: 1rem;
}

.mat-card-text p:last-child {
    margin-bottom: 0;
}

.section-alt {
    background-color: var(--cream-dark);
}

.section-padding {
    padding: 4rem 0;
}

.footer-mat {
    background-color: var(--primary-dark);
    color: var(--cream);
    padding: 3rem 0 2rem;
    text-align: center;
    box-shadow: var(--shadow-4) inset;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: var(--shadow-2);
}

.footer-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(248,240,232,0.5);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(248,240,232,0.1);
}

.gold-accent {
    width: 48px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    .hero-card h1 {
        font-size: 1.7rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn-material {
        width: 100%;
        justify-content: center;
    }
    .mat-card-img {
        height: 220px;
    }
    .section-padding {
        padding: 2.5rem 0;
    }
    .contact-strip-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-card h1 {
        font-size: 1.4rem;
    }
    .mat-card-title {
        font-size: 1.3rem;
    }
}
