/* ============ GENERAL ============ */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F3F1E6;
    color: #333;

    background-image: url('mere_rosii.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 241, 230, 0.6);
    z-index: -1;
}

h1, h2, h3 {
    font-weight: 600;
    color: #5B6B46;
}

section {
    padding: 60px 10%;
}

/* NAVBAR */
nav {
    background-color: #5B6B46;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

nav img {
    height: 60px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

nav .links {
    display: flex;
    align-items: center;
}

/* HEADER / HERO */
header {
     background: url('https://images.unsplash.com/photo-1567306226416-28f0efdc88ce') center/cover no-repeat;	
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    z-index: 5;
}

header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

header p {
    font-size: 1.3rem;
}

/* BUTTON */
.btn {
    display: inline-block;
    background-color: #C2A878;
    padding: 14px 26px;
    border-radius: 8px;
    color: white !important;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    z-index: 5;
}

/* CARDS */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background: rgba(255,255,255,0.9);
    width: 290px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 16px rgba(0,0,0,0.1);
    border-top: 6px solid #8C9C6C;
    text-align: center;
    z-index: 5;
}

/* CONTACT BOX */
.contact-box {
    background: rgba(91,107,70, 0.9);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    z-index: 5;
}

/* FOOTER */
footer {
    background: #5B6B46;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    z-index: 5;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    header h1 { font-size: 2.2rem; }
    .card { width: 100%; }
    nav { flex-direction: column; }
    nav .links { flex-direction: column; }
    nav a { margin: 10px 0 0 0; }
}
