
@font-face {
    font-family: 'TAN-NIMBUS';
    src: url('../fonts/TAN-NIMBUS.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #eeefe7;
    margin: 0;
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'TAN-NIMBUS', sans-serif;
    font-weight: normal;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #000000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 60px;
    z-index: 101;
}

header .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header .nav-links li {
    margin-left: 30px;
}

header a {
    color: #eeefe7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

header a:hover {
    color: #C5A453;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #eeefe7;
    margin: 5px 0;
    transition: all 0.3s ease;
}

#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

#hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.btn, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn {
    background: #C5A453;
    color: #000000;
}

.btn:hover {
    background: #B24C4C;
    transform: translateY(-3px);
}

section {
    padding: 5rem 0;
}

#about .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#about img {
    width: 40%;
    border-radius: 10px;
}

#services {
    background: #111;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card {
    background: #000000;
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(238, 239, 231, 0.05);
}

.card h3 {
    margin-top: 0;
}

.card .btn-secondary {
    margin-top: auto; /* Magic alignment! */
}

.btn-secondary {
    background: #556B2F;
    color: #eeefe7;
}

.btn-secondary:hover {
    background: #C5A453;
    color: #000000;
    transform: translateY(-3px);
}

.testimonial-slider {
    width: 100%;
    padding: 2rem 0;
}

.swiper-slide {
    height: 500px; /* Fixed height for all slides */
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.swiper-button-next, .swiper-button-prev {
    color: #C5A453;
}

.swiper-pagination-bullet-active {
    background: #C5A453;
}

#contact {
    text-align: center;
    background: #111;
}

footer {
    background: #000;
    padding: 4rem 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info a, .footer-social a {
    color: #eeefe7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover, .footer-social a:hover {
    color: #C5A453;
}

.footer-social i {
    font-size: 2rem;
    margin: 0 10px;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    color: #888;
}

@media(max-width: 992px) {
    .service-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .container {
        width: 90%;
    }

    .hamburger {
        display: block;
    }

    header .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s ease;
    }

    header .nav-links.active {
        left: 0;
    }

    header .nav-links li {
        margin: 2rem 0;
    }

    #hero h1 {
        font-size: 2.8rem;
    }

    #about .container {
        flex-direction: column;
    }

    #about img {
        width: 100%;
        max-width: 350px;
        margin-bottom: 2rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
