/* Reset some default browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(245,239,214);
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    padding: 20px 0;
}

/* Main Content */
/*main {*/
/*    padding: 40px 0;*/
/*}*/
a{
    text-decoration: none;
    color: inherit;
}
.hero-section {
    margin-top: 3rem;
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #A7794E;
}
.hero-section h2 {
    font-size: 1.6rem;
    /*font-weight: normal;*/
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #A7794E;
}.hero-section h3 {
    margin-top: 2rem;
    font-size: 1rem;
    /*font-weight: normal;*/
    text-transform: uppercase;
    margin-bottom: 20px;
    /*color: #A7794E;*/
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero-section img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}


/* Card Section */
.card-section {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(16, 14, 14, 0.1);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*padding: 0.2rem;*/
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card h2 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #222;
}

.card p {
    padding: 0 20px 20px;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    .logo{
        margin-top: 1.56rem;
    }
    .hero-section {
        margin-top: 1rem;
    }
    .hero-section h1 {
        font-size: 1.25rem;
    }.hero-section h2 {
        font-size: 0.8rem;
    }
}