
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Exo 2", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #141414;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-family: "Exo 2", sans-serif;
}
nav ul li a:hover {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    /* border-radius: 5px; */
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.carousel-item button{
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}

.carousel-item  button:hover{
    background-color: rgb(226, 16, 16);
}


.hero-content h1 {
 padding: 20px;

}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
}

.hero-content button {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #e50914;
    border: none;
    color: #fff;
    cursor: pointer;
}

.movie-section {
    padding: 50px;
    font-family: "Exo 2", sans-serif;
}

.movie-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.movie-item {
    padding: 10px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    background: linear-gradient(to top, #000000 0%, #514f4f 100%);
    background-size: 100% 200%;
    background-position: bottom;
    transition: transform 0.3s ease, background-position 0.5s ease;
}
.movie-item_2 {
   
    padding: 10px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.movie-item:hover {
    transform: scale(1.05);
    background-position: top;
}
.movie-item img {
    width: 100%;
    height: 400px;
    display: block;

    object-fit: cover;
    margin-bottom: 10px;
}

footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}


.movie-infos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.363);
 
   
    width: 100%;
    height: fit-content;
    padding: 10px 20px 10px 20px;
    margin-bottom: 60px;
}
.movie-infos_2{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 10px;
}

.movie-info{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: white;
}
.movie-info_2{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: white;
}


.movie-item > p {
    color: white;
    margin-top: 20px;
}

section{
    background-color: black;
}

section > h2{
    color: white;
}


.logo{
    color: white;
}


/* --------------- */


/* Styles for the pricing section */
.pricing-section {
    text-align: center;
  
    margin: 0 auto;
    width: 100%;
    background-color: #000;
    padding: 20px;

    height: 600px;
    font-family: "Exo 2", sans-serif;
  
}

/* Styles for the heading */
.pricing-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Styles for the pricing cards container */
.pricing-cards {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 20px;
    height: 500px;
    

}

/* Styles for individual pricing cards */
.pricing-card {
    background-color: #333333d2;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    width: 400px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}


/* Hover effect for pricing cards */
.pricing-card:hover {
    transform: translateY(-10px);
    background-color: #333;
}

/* Styles for the plan name */
.pricing-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #fff;
}

/* Styles for the price */
.pricing-card .price {
    font-size: 2em;
    margin-bottom: 20px;
    color: #e74c3c;
}

/* Styles for the features list */
.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

/* Styles for individual features */
.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: white;
}

/* Styles for the register button */
.pricing-card button {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the button */
.pricing-card button:hover {
    background-color: #c0392b;
}


/* --------------------------- */
/* footer design */

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    font-family: "Exo 2", sans-serif;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}
.footer-section .about p{
    text-align: start;
}

.footer-section h2, .footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 1em;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #fff;
    font-size: medium;
    text-decoration: none;
    transition: color 0.3s;
    transition: font-size 0.3;
    /* transition: translateX(50px); */
}

.footer-section ul li a:hover {
    color: #e74c3c;
    font-size: large;
   
}

.footer_list{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.footer_list li > img{
    cursor: pointer;
    border:1px ;
    border-radius: 50%;
    
    
}
.footer_list li > img:hover{
    cursor: pointer;
    border:1px ;
    border-radius: 50%;
    transform: translateY(5px);
  
  
    
}

.svg{
    color: white;
    cursor: pointer;
}

.extra ul{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    list-style: none;
    gap: 10px;
    cursor: pointer;
}


/* ------------ */

/* navbar design */

header {
   
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Fixes the header at the top */
    top: 0; /* Positions the header at the top */
    width: 100%; /* Ensures the header spans the full width of the page */
    z-index: 1000;
   
}

.logo {
    display: flex;
    align-items: center;
}

.imgg {
    margin-right: 10px; /* Space between image and text */
    animation: spin 10s alternate-reverse infinite; /* Animation properties */
}
.imgg2 {
    margin-right: 10px; /* Space between image and text */
    animation: spin 10s alternate infinite; /* Animation properties */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}


/* carousel */
.hero{
    font-family: "Exo 2", sans-serif;
}
.carousel-item {
    height: 100vh;
    min-height: 200px;
    background: no-repeat center center scroll;
    background-size: cover;
}


.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    /* border-radius: 10px; */
    /* height: 500px;
    width: full;; */
    margin: 0px;
    /* height: 100vh ; */
   
}
.carousel-caption p {
   margin-top: 10px;
   
}

.movie-item_ h1 {
    font-size: 2.5rem;
    color: #fff;
}

.movie-infos_2 {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    
}

.movie-info_2 {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

button {
    /* background-color: #e74c3c; */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    /* background-color: #c0392b; */
}

p {
    color: #fff;
}
