* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #222;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: #000;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav-links li {
    display: inline;
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */
.hero {
    background-image: url('images/img1.avif');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding-top: 200px;
}

.hero-content h1 {
    font-size: 3.2rem;
}

.hero-content p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #ff5a00;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
}

/* SERVICES */
.services-section {
    padding: 100px 80px;
    text-align: center;
}

.services-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.services-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    background: #f7f7f7;
    padding: 30px;
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* PRICING */
.pricing-section {
    padding: 100px 80px;
    background: #111;
    color: #fff;
    text-align: center;
}

.pricing-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.price-card {
    background: #1c1c1c;
    padding: 30px;
    width: 260px;
    border-radius: 8px;
}

.price-card h3 {
    margin-bottom: 15px;
}

.price-card p {
    margin: 6px 0;
}

.premium {
    border: 2px solid #ff5a00;
}

.addons {
    background: #000;
}

/* ABOUT */
.about-section {
    padding: 100px 80px;
}

.about-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-text {
    max-width: 500px;
}

/* IMAGES */
.section-img {
    width: 420px;
    border-radius: 10px;
    box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}

/* CONTACT */
.contact-section {
    padding: 100px 40px;
    text-align: center;
    background: #000;
    color: #fff;
}

.book-text {
    margin: 15px 0;
    font-size: 1.1rem;
}

.book-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff5a00;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* MOBILE */
@media(max-width: 900px){
    .hero-content h1{
        font-size: 2.2rem;
    }

    .section-img{
        width: 90%;
    }
}