*{
	margin: auto;
	padding: 0;
	box-sizing: border-box;

	
}

header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background-color: #000000;
}

.logo{
	display: flex;
	height: auto;
	margin: auto;
	width: 350px;
}

.navbar{
	list-style: none;
	display: flex;

}

.navbar li{
	margin-left: 40px;
	display: inline-block;
	margin: 0 20px;
	position: relative;
}
/*Navbar text*/
.navbar li a {
	text-decoration: none;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 20px;
	font-family: fantasy;
}
/*navbar effect*/
.navbar li ::after{
	content: '';
	height: 3px;
	width: 0%;
	background: #ff0000;
	position: absolute;
	left: 0;
	bottom:-5px;
	transition: 0.5s;
}
.navbar li :hover:after{
	width:100%;
}

/*First content contaier*/
.title{
 font: 35px cursive;
 text-decoration: underline red ;
 text-align: center;
}

.container1{
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin: auto;
	justify-content: center;
	padding: 30px;
}
.sub-container1{
	max-width: 100%;
	height: auto;
	margin: auto;
}
.sub-container1 img{
	width: 500px;
	height: auto;
	margin-top: 30px;
}
.sub-container2{
	font-family:cursive ;
	margin-left: 20px;
	padding: 30px;
}

/*Clip css goes from here*/
.clip-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.clip-subcontainer {
  flex: 1;
  margin: 10px;
  min-width: 300px;
}

.clip-subcontainer iframe{
	width: 400px;
	height:300px;
}
/*footer goes from here*/
footer {
	margin-top: 150px;
	width: 100%;
/*	padding: 100px 15%;*/
	background: #000000;
	color: #ffffff;
	display: flex;
	font-family: cursive;
}
footer div {
	flex-grow: 1;
	flex-basis: 0;
	padding:20px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.col-2 a{
	display: block;
	transition: color 0.3s;
}
.col-2 img{
	display: block;
	width: 200px;
	height: auto;
	transition: filter 0.1s;
}
.col-2 img:hover{
	filter: brightness(90);	
}
.col-3{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.col-3 ul{
	list-style: none;
	padding: 0;
}
.col-3 li{
	position: relative;
}
.col-3 li a{
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: #ffffff;
	margin-bottom: 10px;
}
.col-3 li a::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 2px;
	background-color: red;
	transition: width 0.5s;
}
.col-3 li a:hover::before{
	width: 100%
}

/*Cast page items goes from here*/
.casts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.cast-pic {
  width: 25%; 
  padding: 20px;
  text-align: center;
}

.cast-pic img {
  max-width: 100%;
  height: 400px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.cast-pic img:hover{
	transform: scale(1.1);
}
.cast-pic p{
	font-family: cursive;
	margin-top: 10px;
	font-size: 20px;
	text-decoration: underline red;

}

/*Shop page style goes from here*/
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.item {
  text-align: center;
}

.item img {
  max-width: 80%;
  height: auto;
  transition: transform 0.3s ease;
}

.item img:hover {
  transform: scale(1.1); 
}

.item h2, .item p{
	 margin: 10px 0;
	 font-family: cursive;
}
.item h2 {
 	margin-top: 30px;
}

/*Check Out Page goes from here*/
.checkout-table {
  width: 90%;
  border-collapse: collapse;
  margin-top: 60px;
  font-family: cursive;
  font-size: 20px;
}

.table-header, .table-row, .table-footer {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.table-header > div, .table-row > div, .table-footer > div {
  flex: 1;
  text-align: center;
}

.table-row > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-row img {
  width: 150px;
  height: auto;
}

.table-footer > div:first-child {
  font-weight: bold;
}

@media (max-width: 930px) {
    .navbar {
        flex-direction: column;
        align-items: flex-end;
    }

    .navbar li {
        margin-left: 0;
        margin-bottom: 5px;
    }

    .logo{
    max-width: 50%;
    }
    .container1{
    	flex-direction: column;
    }

/*Clip css goes here*/
    .clip-container {
    flex-direction: column;
  }

  .clip-subcontainer {
    flex-basis: 100%;
  }
/* footer col-2 img */
.col-2 img {
	max-width: 100px;
}
/*footer goes in colum*/
footer{
	flex-direction: column;
	align-items: flex-end;
}
.casts{
	flex-direction: column;
}
.cast-pic{
	width: 100%;
}
/*shop page goes from here*/
.grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


