
/* RESET */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color:#111;
    background:#fff;
    line-height:1.6;
}

h1,h2,h3 {
    font-family:'Playfair Display', serif;
}

/* HEADER */
.header {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:30px 60px;
    z-index:10;
}

.logo {
    height:50px;
}

/* HERO */
.hero {
    height:100vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    color:white;
}

.hero::after {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content {
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.hero h1 {
    font-size:60px;
    margin-bottom:20px;
}

.hero p {
    font-size:20px;
}

/* BUTTON */
.button {
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:4px;
    transition:0.3s;
}

.button:hover {
    background:#ddd;
}

/* SECTION */
.section {
    padding:80px 10%;
    text-align:center;
}

.section h2 {
    font-size:40px;
    margin-bottom:40px;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* CARD */
.card {
    background:#f8f8f8;
    padding:35px;
    border-radius:8px;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-5px);
    background:#111;
    color:white;
}

/* MAP */
.map-container {
    width:100%;
    height:450px;
    border-radius:10px;
    overflow:hidden;
}

/* SOCIAL */
.social {
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:30px;
}

.social a {
    text-decoration:none;
    color:#111;
    border-bottom:1px solid #111;
}

/* CTA */
.cta {
    background:#111;
    color:white;
    padding:60px;
    text-align:center;
}
