body {
    background-color: #141414;
    color: white;
    font-family: 'Arial', sans-serif;
}

.navbar {
    background-color: #000;
}

.navbar-brand {
    font-weight: bold;
    color: #e50914;
    font-size: 1.8rem;
}

.hero {
    height: 100vh;
    background: url('./img/fcofer.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: zoomHero 10s infinite alternate;
    color: black; 
}



.hero p{
    font-size: 35px;
    text-shadow: 2px 2px 4px rgba(255, 182, 193, 0.6);
     font-family: 'Ruthligos';
     src: url('assets/fonts/Ruthligos.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
    
}

.gallery-section {
    padding: 30px 15px;
}

.gallery-title {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.gallery {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
}

.gallery img {
    height: 200px;
    border-radius: 10px;
    flex: 0 0 auto;
}

.section {
    padding: 30px 15px;
}

.btn-netflix {
    background-color: #e50914;
    color: white;
    border: none;
}

.btn-netflix:hover {
    background-color: #f40612;
}

/* Soft Blue */
.btn-soft-blue {
    background-color: #e7f1ff;
    color: #0d6efd;
    border: 1px solid #cfe2ff;
}
.btn-soft-blue:hover {
    background-color: #d0e3ff;
    color: #084298;
}