﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Calibri, 'Poppins',sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F5F0E8;
    overflow-x: hidden;
}

/* HEADER */

header {
    height: 100vh;
    background: linear-gradient(rgba(35,35,35,.55), rgba(35,35,35,.55)), url("https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

/* NAVIGATION */

.navbar {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    position: fixed;
    padding: 18px 8%;
    align-items: center;
    backdrop-filter: blur(12px);
    justify-content: space-between;
    /*background: rgba(255,255,255,.15);*/
    background: #444;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

    .logo i {
        font-size: 42px;
        color: tomato;
    }

    .logo h2 {
        font-size: 30px;
    }

    .logo span {
        font-size: 13px;
        opacity: .9;
    }

.navbar ul {
    display: flex;
    list-style: none;
}

    .navbar ul li {
        position: relative;
    }

        .navbar ul li a {
            display: block;
            padding: 18px 22px;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: .35s;
        }

            .navbar ul li a:hover {
                background: tomato;
                color: #fff;
            }

/* Dropdown */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #F5F0E8;
    width: 220px;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

    .dropdown-menu li {
        width: 100%;
    }

        .dropdown-menu li a {
            color: #444;
            padding: 15px 20px;
        }

            .dropdown-menu li a:hover {
                background: tomato;
                color: #fff;
            }

.dropdown:hover .dropdown-menu {
    display: block;
}

/* HERO */

.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    color: #fff;
}

    .hero h1 {
        font-size: 65px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 20px;
        max-width: 750px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

.btn {
    padding: 16px 42px;
    background: tomato;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: .35s;
}

    .btn:hover {
        background: #fff;
        color: tomato;
        transform: translateY(-4px);
    }

/* MOBILE MENU */

#menu {
    display: none;
}

.menu-btn {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* ---------------------------------------------------------------------------------------------------------------------------------------------*/
/* You need to add every style class below you add above [Device compatibility]*/

/* RESPONSIVE */

@media(max-width:900px) {

    .menu-btn {
        display: block;
    }

    .navbar {
        flex-wrap: wrap;
    }

        .navbar ul {
            width: 100%;
            display: none;
            flex-direction: column;
            background: #FAEBD7;
            margin-top: 20px;
        }

            .navbar ul li {
                width: 100%;
            }

                .navbar ul li a {
                    color: #444;
                }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        box-shadow: none;
        background: #fff;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    #menu:checked ~ ul {
        display: flex;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }
}

/*-------------------------------------------Search Section [Start]-----------------------------------------------------*/

/* ========================= */

.search-section {
    width: 100%;
    background: #F4E5D4;
    padding: 70px 8%;
}

.search-content {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

    .search-content h2 {
        color: #E94F37;
        font-size: 42px;
        margin-bottom: 18px;
    }

    .search-content p {
        color: #555;
        font-size: 18px;
        margin-bottom: 40px;
        line-height: 1.8;
    }

/* ========================= */

.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    transition: .4s;
}

    .search-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(0,0,0,.20);
    }

    /* ========================= */

    .search-box input {
        width: 100%;
        border: none;
        outline: none;
        padding: 22px 30px;
        font-size: 18px;
        background: white;
        color: #444;
    }

        .search-box input::placeholder {
            color: #999;
        }

        .search-box input:focus {
            background: #FFF9F3;
        }

    /* ========================= */

    .search-box button {
        border: none;
        background: #E94F37;
        color: white;
        padding: 22px 38px;
        font-size: 18px;
        cursor: pointer;
        transition: .4s;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .search-box button:hover {
            background: #c93a22;
            letter-spacing: 1px;
        }

        .search-box button:active {
            transform: scale(.96);
        }

/* ========================= */

@media(max-width:768px) {

    .search-box {
        flex-direction: column;
        border-radius: 20px;
    }

        .search-box input {
            width: 100%;
            border-bottom: 1px solid #eee;
            text-align: center;
        }

        .search-box button {
            width: 100%;
            justify-content: center;
        }

    .search-content h2 {
        font-size: 32px;
    }
}

/* No white space between sections */

section {
    margin: 0;
}
/*-------------------------------------------Search Section [End]-------------------------------------------------------*/

/*-------------------------------------------Footer Section [Start]-----------------------------------------------------*/


/* Footer */

footer {
    background: #ff6347;
    color: white;
    width: 100%;
    margin: 0;
    padding: 70px 7%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 45px;
}

.footer-box h2 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
}

.footer-box p {
    line-height: 28px;
    font-size: 15px;
}

.footer-box p a{
    color: white;
    text-decoration: none;
}
    .footer-box p a:hover {
        color: white;
        text-decoration: underline;
    }

.footer-box ul {
    list-style: none;
}

    .footer-box ul li {
        margin: 15px 0;
    }

        .footer-box ul li a {
            text-decoration: none;
            color: white;
            font-size: 16px;
            transition: .4s;
        }

            .footer-box ul li a:hover {
                padding-left: 10px;
                color: #F5F0E6;
            }

.timing li {
    color: white;
}

.social-icons {
    margin-top: 30px;
}

    .social-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        background: white;
        border-radius: 50%;
        margin-right: 10px;
        text-decoration: none;
        transition: .4s;
    }

    .social-icons i {
        color: #ff6347;
        font-size: 22px;
    }

    .social-icons a:hover {
        background: #F5F0E6;
        transform: translateY(-8px) rotate(360deg);
    }


.copyright {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.4);
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
}
    .copyright a {
        color: white;
        text-decoration: none;
    }
    .copyright a:hover {
        color: white;
        text-decoration: underline;
    }

    @media(max-width:768px) {

        footer {
            padding: 50px 25px;
        }

        .footer-container {
            gap: 35px;
        }
    }
    /*-------------------------------------------Footer Section [End]-------------------------------------------------------*/