* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    color: #f2f2f2;
    font-family: 'Montserrat', sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 2px;
}

nav a {
    color: #fff;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 300;
    transition: 0.3s;
}

nav a:hover {
    color: #c5a46d;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #c5a46d;
    padding: 12px 30px;
    color: #000;
    text-decoration: none;
    margin-right: 15px;
}

.btn-secondary {
    border: 1px solid #c5a46d;
    padding: 12px 30px;
    color: #c5a46d;
    text-decoration: none;
}

.concept {
    padding: 100px 20px;
    text-align: center;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 20px;
}

.card {
    background: #1a1a1a;
    padding: 60px 40px;
    width: 300px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    background: #262626;
}

footer {
    text-align: center;
    padding: 40px;
    background: #000;
    font-size: 14px;
}
