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

body {
    font-family: Arial, sans-serif;
    color: #222;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}


/* HEADER */

header {
    background: #111;
    padding: 20px 5%;
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    color: white;
}

nav div {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
}



/* HERO */

.hero {
    max-width: 1200px;
    margin: auto;
    padding: 60px 5%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 52px;
}

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

.hero img {
    width: 50%;
    border-radius: 20px;
}



/* BUTTON */

.button {
    display: inline-block;
    background: #111;
    color:white;
    padding:15px 30px;
    border-radius:30px;
}



/* SERVICES */

.services {
    padding:60px 5%;
    text-align:center;
}


.cards {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


.card {
    background:#f7f7f7;
    border-radius:15px;
    overflow:hidden;
}


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


.card h3 {
    margin:15px;
}


.card p {
    margin:15px;
}



/* GALLERY */

.gallery {
    padding:60px 5%;
    text-align:center;
}


.gallery-grid {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}


.gallery-grid img {
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
}



/* ABOUT */

.about {
    max-width:1200px;
    margin:auto;
    padding:60px 5%;
    display:flex;
    align-items:center;
    gap:40px;
}


.about img {
    width:50%;
    border-radius:20px;
}



/* CTA */

.cta {
    text-align:center;
    padding:60px 5%;
    background:#f5f5f5;
}



/* FOOTER */

footer {
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}




/* MOBILE */

@media screen and (max-width:768px){


nav {
    flex-direction:column;
    text-align:center;
}


nav div {
    flex-direction:column;
    gap:10px;
}



.hero {
    flex-direction:column;
    text-align:center;
}


.hero h1 {
    font-size:36px;
}


.hero img {
    width:100%;
}



.cards {
    grid-template-columns:1fr;
}



.gallery-grid {
    grid-template-columns:1fr;
}


.gallery-grid img {
    height:300px;
}



.about {
    flex-direction:column;
    text-align:center;
}


.about img {
    width:100%;
}



.button {
    width:100%;
}



}