* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}
body {
    background-color: #DFD0B8;
    color: #222831;
}
.navbar {
    background-color: #222831;
    padding: 20px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar h1 {
    color: #DFD0B8;
    font-size: 26px;
    letter-spacing: 2px;
}
.navbar nav a {
    color: #DFD0B8;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}
.navbar nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #948979;
    transition: 0.3s;
}
.navbar nav a:hover::after {
    width: 100px;
}
.hero {
    background-color: #393E46;
    color: #DFD0B8;
    text-align: center;
    padding: 90px 20px;
}
.hero h2 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.hero p {
    font-size: 15px;
    opacity: 0.85;
}
.hero button {
margin-top: 35px;
padding: 14px 40px;
background-color: #948979;
color: #222831;
border: none;
font-size: 14px;
letter-spacing: 1px;
border-radius: 30px;
cursor: pointer;
transition: 0.3s;
}
.hero button:hover {
    background-color: #DFD0B8;
}
.section {
    padding: 80px 70px;
    text-align: center;
}
.section h2 {
    font-size: 34px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 55px;
    color: #948979;
}
.section.dark {
    background-color: #393E46;
    color: #DFD0B8;
}
.section.dark .section-subtitle {
    color: #DFD0B8;
    opacity: 0.8;
}
.cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}
.card {
    width: 260px;
    background-color: #DFD0B8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s, box-shadow 0.4s;
}
.section.dark .card {
    background-color: #948979;
}
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card h3 {
    margin-top: 18px;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
}
.card p {
    padding: 12px 18px 24px;
    font-size: 13px;
    opacity: 0.85;
    text-align: center;
}
#collection {
    background-color: #DFD0B8;
}
footer {
    background-color: #222831;
    color: #DFD0B8;
    text-align: center;
    padding: 25px;
    font-size: 13px;
    letter-spacing: 1px;
}
