@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(-45deg, lightgray, white);
}

/* Responsive Navbar */
nav {
    display: flex;
    background: linear-gradient(#814d42, #522c23);
    justify-content: space-around;
    align-items: center;
    height: 80px;
    border-bottom: 2px solid whitesmoke;
}
nav ul {
    display: flex;
    list-style: none;
    width: 42%;
    justify-content: space-between;
    align-items: center;
}
nav ul li a {
    position: relative;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: .3s linear;
}
nav ul li a:hover {
	text-shadow: 0 0 3px whitesmoke;
    text-decoration: underline;
}
nav .logo img {
    width: 180px;
    cursor: pointer;
}
.other-btn {
    text-decoration: none;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	padding: 10px;
	background-color: goldenrod;
	border: 2px solid white;
	border-radius: 10px;
    transition: .2s linear;
}
.other-btn:hover {
	background-color: darkgoldenrod;
}

/* Hamburger and Dropdown Menu */
nav .menu-toggle {
    display: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
.dropdown-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 80px;
    height: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: height .2s ease-in-out;
}
.dropdown-menu.open {
    height: 50%;
}
.dropdown-menu li {
    padding: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropdown-menu .other-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}
.dropdown-menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: .3s linear;
}
.dropdown-menu li a:hover {
	text-shadow: 0 0 3px whitesmoke;
    text-decoration: underline;
}
/* Footer */
footer {
	background: linear-gradient(#522c23,#331b16);
	padding: 25px 30px;
}
footer .foottop {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
footer .foottop .footlist {
	margin: 20px 50px;
}
footer .foottop .footlist h2 {
	position: relative;
	color: gold;
}
footer .foottop .footlist h2::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	background-color: goldenrod;
	height: 2px;
	width: 100%;
}
footer .foottop .footlist p {
	color: white;
	margin: 20px 0;
	transition: .3s linear;
}
footer .foottop .footlist p:hover {
	color: gold;
	padding-left: 8px;
	cursor: pointer;
}
footer .foottop .footlist li {
	list-style: none;
	margin: 20px 0;
}
footer .foottop .footlist li a {
	text-decoration: none;
	color: white;
	transition: .3s linear;
}
footer .foottop .footlist li a:hover {
	color: gold;
	padding-left: 8px;
}
footer .footbottom {
	color: white;
	text-align: center;
	border-top: 2px solid goldenrod;
	padding-top: 15px;
}
/* Responsive Breakpoint */
/* For Tablet */
@media screen and (max-width: 768px) {
    nav ul {
        width: 55%;
    }
    .desc {
        padding: 20vh 30px 30px 30px;
    }
}
/* For Mobile */
@media screen and (max-width: 576px) {
    nav ul, nav .other-btn {
        display: none;
    }
    nav .menu-toggle {
        display: block;
    }
    .dropdown-menu {
        display: block;
    }
}