* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
color: white;
background: #0a0a0a;
overflow-x: hidden;
}
header {
position: fixed;
width: 100%;
height: 80px;
background: rgba(10,10,10,0.6);
padding: 20px 60px;
display: flex;
justify-content: space-between;
align-items: center;
backdrop-filter: blur(10px);
z-index: 1000;
}
.hero {
height: 100vh;
display: flex;
align-items: center;
padding: 0 80px;
background: linear-gradient(to right, #000000cc, #00000000), url('https://images.unsplash.com/photo-1521334884684-d80222895322') center/cover;
}
.section {
padding: 100px 80px;
text-align: center;
}
.cards {
display: flex;
gap: 40px;
margin-top: 60px;
justify-content: center;
flex-wrap: wrap;
}
.section h2 {
font-family: 'Playfair Display', serif;
font-size: 42px;
margin-bottom: 20px;
}
.card {
background: #111;
padding: 40px;
width: 300px;
border: 1px solid #222;
transition: 0.4s;
text-decoration:none;
}
.card:hover {
transform: translateY(-10px);
border-color: gold;
}
.card h3 {
margin-bottom: 15px;
color: white;
}
.section p {
color: #aaa;
max-width: 600px;
margin: auto;
}
.logo {
font-family: 'Playfair Display', serif;
font-size: 28px;
letter-spacing: 2px;
}
nav a {
margin-left: 30px;
text-decoration: none;
color: #ccc;
font-size: 14px;
transition: 0.3s;
}
nav a:hover {
color: gold;
}
footer {
padding: 40px;
text-align: center;
border-top: 1px solid #222;
color: #777
}
.gold {
color: gold;
}
.hero-content h1 {
font-family: 'Playfair Display', serif;
font-size: 70px;
margin-bottom: 20px;
}
.hero-content p {
color: #bbb;
max-width: 500px;
margin-bottom: 30px;
}
.btn {
padding: 14px 32px;
border: 1px solid gold;
color: gold;
text-decoration: none;
transition: 0.3s;
}
.btn:hover {
background: gold;
color: black;
}
