@import "reset.css";
@import "font.css";

/**
--------------------------------------------------------------------------------------
------------------------ ************ Public Css ************ ------------------------
--------------------------------------------------------------------------------------
**/

html {
    scroll-behavior: smooth;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

body {
    font-family: Nunito;
    background-color: #1a1a1a;
    color: #E6EEF6;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

#header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 12px 0 0 0;
}

.logo {
    width: 80px;
    margin: 0 auto;
}

#hero {
    background-image: url("../images/hero4.png");
    background-position: center;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

#hero h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 1px 1px #000000;
}

#hero p {
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    width: 650px;
    margin: 12px auto 0 auto;
}

.hero_buttons {
    display: table;
    margin: 32px auto 0 auto;
}

.hero_button {
    float: left;
    padding: 0 8px;
}

.btn-primary {
    display: block;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #111;
    background: linear-gradient(
            135deg,
            #c8a24a 0%,
            #e3c873 50%,
            #b08a2e 100%
    );
    border: none;
    border-radius: 999px;
    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
    box-shadow: 0 12px 32px rgba(200, 162, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(200, 162, 74, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(200, 162, 74, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    display: block;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #d4b15f;
    background: transparent;
    border: 1.5px solid rgba(212, 177, 95, 0.75);
    border-radius: 999px;
    transition: color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    color: #111;
    background: linear-gradient(
            135deg,
            #c8a24a 0%,
            #e3c873 50%,
            #b08a2e 100%
    );
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(200, 162, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(200, 162, 74, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

#introduction {
    padding: 80px 0;
}

.introduction_photo {
    float: right;
    width: 55%;
}

.introduction_photo img {
    border-radius: 24px;
}

.introduction_details {
    float: left;
    width: 45%;
    padding: 0 60px 0 0;
}

.introduction_logo {
    width: 150px;
    margin: 0 0 12px 0;
}

.introduction_title {
    font-size: 28px;
    font-weight: 700;
}

.introduction_content {
    margin: 18px 0;
}

.introduction_content p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 8px 0;
}

.introduction_cta a {
    display: table;
}

#services {
    padding: 80px 0;
}

.row_services {
    margin: 0 -20px;
}

.col_services {
    width: 25%;
    float: left;
    padding: 0 20px;
}

.icon_service {
    width: 100px;
}

.title_service {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.excerpt_service {
    font-size: 15px;
    font-weight: 300;
    color: #d3d3d3;
}

.col_gallery {
    width: 25%;
    float: left;
}

@media only screen and (max-width: 599px) {
    .container, .introduction_photo, .introduction_details {
        width: 100%;
    }

    .container {
        padding: 0 15px;
    }

    .introduction_details {
        padding: 0;
        margin: 18px 0 0 0;
    }

    #hero h1 {
        font-size: 27px;
    }

    #hero p {
        font-size: 17px;
        width: 100%;
    }

    .hero_button {
        float: unset;
        margin: 12px 0;
    }

    .hero_button a {
        text-align: center;
    }

    .introduction_cta a {
        font-size: 14px;
        text-align: center;
        padding: 14px 24px;
    }

    #introduction {
        padding: 40px 0;
    }

    #services {
        padding: 40px 0;
    }

    .row_services {
        margin: 0;
    }

    .col_services {
        width: 100%;
        padding: 10px 0;
    }
}
