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

:root {
    --color-dark: #343131;    
    --color-primary: #A04747; 
    --color-accent: #D8A25E;  
    --color-light: #EEDF7A;   
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Sleek Navbar */
.navbar-custom {
    background-color: var(--color-dark);
    padding: 20px 0;
}
.navbar-custom .nav-link {
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
}
.navbar-custom .nav-link:hover {
    color: var(--color-accent) !important;
}

/* Full Height Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(52, 49, 49, 0.7), rgba(52, 49, 49, 0.7)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section h1 {
    /* Uses clamp() to auto-scale: 
       Min size: 2.5rem (mobile)
       Ideal size: 8vw (scales with screen)
       Max size: 5rem (desktop) */
    font-size: clamp(2.5rem, 8vw, 5rem); 
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-section p {
    color: var(--color-light);
    font-size: 1.2rem;
}

/* Outline Buttons (Tabasco Style) */
.btn-outline-custom {
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 12px 35px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-custom:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

/* Image Service Cards */
.service-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 30px;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(52, 49, 49, 0.5);
    transition: background 0.3s ease;
}
.service-card:hover img {
    transform: scale(1.05);
}
.service-card:hover::after {
    background: rgba(160, 71, 71, 0.7); /* Primary Red overlay on hover */
}
.service-card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}
.service-card-content h3 {
    color: #ffffff;
    margin: 0;
    font-size: 2rem;
}

/* Footer */
.footer-custom {
    background-color: var(--color-dark);
    padding: 80px 0 40px;
    color: #fff;
}
.footer-custom a { color: var(--color-accent); text-decoration: none; }
