﻿
@font-face {
    font-family: 'montserrat-regular';
    src: url('../fonts/montserrat-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'baskervville-bold';
    src: url('../fonts/baskervville-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'montserrat-bold';
    src: url('../fonts/montserrat-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'baskervville-medium';
    src: url('../fonts/baskervville-medium.ttf') format('truetype');
}
.services-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #a16157;
    font-weight: 600;
    transition: color 0.3s;
}

    .services-nav a:hover {
        color: #000;
    }

.service-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.display4 {
    color: #edeae1;
}
p {
    color: #edeae1;
}

.service-section .overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.service-section .content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 60px 2rem 2rem 2rem;
    text-align: left;
}

    .service-section h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #edeae1;
    }

    .service-section p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

.btnGettt {
    display: inline-block;
    background-color: #edeae1;
    color: #a16157;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s;
}

    .btnGettt:hover {
        background-color: #a16157 !important;
        color: #edeae1 !important;
        text-decoration: none!important;
    }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}


@media only screen and (max-width: 500px) {
    .service-section .content {
        padding: 60px  0 0 0 !important;
    }
    .service-section h2{
        font-size:2rem!important;
    }
    .service-section p{
        font-size:1rem!important;
    }
}