@import url('https://fonts.cdnfonts.com/css/rawline');

/* Body background image */
body {
    background-image: url(assets/background.png);
}

/* Navbar container style */
.container-fluid {
    margin-bottom: 2%;
}

/* Navbar brand style */
.navbar-brand {
    color: white;
    font-size: 50px;
    font-family: 'Rawline', sans-serif;
}

/* Navbar links style */
.nav-link {
    color: white;
}

/* Navbar form input style */
.F .form-control {
    width: 500px;
    height: 40px;
    margin-top: -5px;
    border-radius: 30px;
    font-family: 'Rawline', sans-serif;
}

/* Image styles */
img {
    width: 100%;
    border-radius: 10px;
}

/* Heading style */
h1 {
    color: rgb(255, 255, 255);
    margin-top: 3%;
    margin-bottom: 3%;
    text-align: center;
    font-family: 'Rawline', sans-serif;
}

.destaques{
    margin-top: 2%;
}

.card-destaques-da-semana{
    margin-top: 4%;
}

/* Destaques da semana paragraph style */
.card-destaques-da-semana p {
    color: rgb(255, 255, 255);
    font-size: 25px;
    text-align: center;
    font-family: 'Rawline', sans-serif;
}

/* Button styles */
.btn-primary {
    background-color: rgba(47, 65, 80, 0.50);
    border: none;
    width: 50%;
    font-family: 'Rawline', sans-serif;
    margin-bottom: 5%;
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: transparent;
}

.zoom {
    transition: transform 0.2s; 
}

.zoom:hover {
    transform: scale(1.1); 
}

.nav-link {
    position: relative;
    list-style: none;
    padding: 4px 0;
}

.nav-link::after,
.nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.6s ease-in-out;
}

.nav-link::after {
    top: 0;
    right: 0;
    transform-origin: right;

}

.nav-link::before {
    left: 0;
    bottom: 0;
    transform-origin: left;
}

.nav-link:hover::after,
.nav-link:hover::before {
    width: 100%;
}

.cart-icon, .user-icon {
    color: #fff;
    font-size: 32px;
    transition: .5s;
}

.cart-icon:hover, .user-icon:hover {
    transform: scale(1.2);
}

.btn-dark {
    margin-bottom: 15%;
}


/* Media queries for responsive design */
@media (max-width: 1024px) {
    .navbar-brand {
        font-size: 30px;
    }

    .F .form-control {
        width: 100%;
        margin-top: 10px;
    }


    .destaques{
        margin-top: 15%;
    }

    .imagem_retro{
        height: 200px;
        border-radius: 10%;
        margin-left: 1px;
        
    }

    .card-destaques-da-semana{
        margin-top: 15%;
        width: 80%;
        margin-left: 39px;
    }

    .card-destaques-da-semana p {
        font-size: 18px;
    }


    .btn-primary {
        width: 80%;
    }

    .zoom img {
        width: 100%;
        padding: 6%;
    }

    .d-flex.justify-content-around {
        flex-direction: column;
        
    }
}

/* footer */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.container2{
	max-width: 1170px;
	margin:auto;
}
.coluna{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
    background-image: url(assets/background.png);
    padding: 4% 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #ffffff;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
