/* GLOBAL */
body {
    font-family: 'Cormorant Garamond', serif;
    background: #000;
    color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

p {
    font-size: 18px;
    line-height: 1.7;
}

section {
    padding: 100px 0;
}

/* NAVBAR */
.navbar {
    background: #000;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
    font-size: 16px;
}

.nav-link:hover {
    color: #C0A060 !important;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('../img/hero-img.jpg') center/cover no-repeat;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 70px;
    line-height: 1.2;
}

.hero p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.hero-btn {
    margin: 10px;
}

/* ABOUT */
.about img {
    width: 100%;
    filter: grayscale(100%);
}

/* SERVICES */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.4s;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    background: rgba(0,0,0,0.3);
}

/* GALLERY */
.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s;
}

.gallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* TESTIMONIAL */
.testimonial {
    background: #111;
}

.carousel-item {
    text-align: center;
}

.stars {
    color: #C0A060;
}

/* CONTACT */
.contact-section {
    background: #000;
}

.contact-box {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: #111;
    border: none;
    border-radius: 40px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-form textarea {
    border-radius: 20px;
    height: 150px;
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
}

.contact-box a {
    text-decoration: none;
    color: #fff;
}

/* FOOTER */
footer {
    background: #000;
    border-top: 1px solid #222;
}

footer a {
    text-decoration: none;
    color: #fff;
}

/* FLOAT BUTTONS */
.quick-actions {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
}

.quick-actions a {
    display: block;
    margin: 10px 0;
    background: #000;
    color: #fff;
    padding: 12px;
    border: 1px solid #fff;
}

.quick-actions a:hover {
    background: #fff;
    color: #000;
}

/* SCROLL TOP */
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border: none;
}

/* ============================= */
/* 🔽 RESPONSIVE MEDIA QUERIES */
/* ============================= */

/* TABLET */
@media (max-width: 991px) {

    section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 16px;
    }

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card img,
    .gallery img {
        height: 250px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    section {
        padding: 60px 0;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }

    .nav-link {
        display: block;
        margin: 10px 0;
    }

    .service-card img,
    .gallery img {
        height: 220px;
    }

    .contact-box {
        flex-direction: column;
        gap: 10px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .quick-actions {
        right: 10px;
        bottom: 80px;
    }

    #topBtn {
        right: 10px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 28px;
    }

    p {
        font-size: 15px;
    }

    .submit-btn {
        width: 100%;
    }
}