html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/* ================= CARD HOVER ================= */

.card {
    transition: 0.4s;
    border: none;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,.18);
    }

/* ================= IMAGE HOVER ================= */

img {
    transition: .4s;
}

    img:hover {
        transform: scale(1.03);
    }

/* ================= BUTTON ================= */

.btn {
    transition: .3s;
    border-radius: 30px;
}

    .btn:hover {
        transform: translateY(-3px);
    }

/* ================= SECTION ================= */

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ================= GALLERY ================= */

.gallery img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* ================= NAVBAR ================= */

.navbar {
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

/* ================= HERO ================= */

.carousel-item img {
    height: 700px;
    object-fit: cover;
}
/* ================= PREMIUM NAVBAR ================= */

.navbar {
    transition: all .4s ease;
}

    .navbar .nav-link {
        color: #222 !important;
        margin-left: 10px;
        transition: .3s;
        position: relative;
    }

        .navbar .nav-link:hover {
            color: #f4b400 !important;
        }

        .navbar .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 2px;
            background: #f4b400;
            transition: .3s;
        }

        .navbar .nav-link:hover::after {
            width: 100%;
        }

.navbar-brand {
    transition: .3s;
}

    .navbar-brand:hover {
        transform: scale(1.05);
    }

/* ================= HERO SLIDER ================= */

.carousel-item {
    position: relative;
}

    .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.45);
    }

.carousel-caption {
    z-index: 2;
}

    .carousel-caption h1 {
        font-weight: 700;
        text-shadow: 2px 2px 10px rgba(0,0,0,.5);
    }

    .carousel-caption p {
        text-shadow: 2px 2px 10px rgba(0,0,0,.5);
    }

/* ================= GALLERY ================= */

img {
    border-radius: 12px;
}

/* ================= SMOOTH SCROLL ================= */

html {
    scroll-behavior: smooth;
}
