/* ===== ABOUT SECTION ===== */
body {
font-family: "fontcustom", sans-serif;
}

.about {
margin-top: 80px;
padding: 40px;
background: rgba(20,35,60,0.4);
border-radius: 20px;
box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
}

.about h2 {
letter-spacing: 3px;
margin-bottom: 20px;
color: #d4e8ff;
}

.about h3 {
letter-spacing: 2px;
margin-top: 30px;
margin-bottom: 20px;
color: #d4e8ff;
}

.about p {
max-width: 600px;
margin: 0 auto 40px auto;
opacity: 0.9;
line-height: 1.6;
}

.about-images {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.image-card {
background: rgba(255,255,255,0.05);
border-radius: 15px;
overflow: hidden;
transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card img {
display: block;
width: 300px;
height: 200px;
object-fit: cover;
}

.image-card span {
display: block;
padding: 10px;
font-size: 14px;
opacity: 0.7;
}

.image-card:hover {
transform: translateY(-10px) rotateY(10deg);
box-shadow: 0 0 25px rgba(0,150,255,0.6);
}

/* ===== FAVORITES CAROUSEL ===== */

.favorites {
margin-top: 70px;
text-align: center;
}

.favorites-title {
letter-spacing: 3px;
margin-bottom: 25px;
opacity: 0.9;
font-size: 18px;
color: #d4e8ff;
}

.favorites-wrapper {
position: relative;
overflow: hidden;
width: 80%;
max-width: 800px;
margin: 0 auto;
border-radius: 20px;
}

/* Fade edges */

.favorites-wrapper::before,
.favorites-wrapper::after {
content: "";
position: absolute;
top: 0;
width: 180px;
height: 100%;
z-index: 2;
pointer-events: none;
}

.favorites-wrapper::before {
left: -10px;
background: linear-gradient(to right, #070a15 0%, transparent 100%);
}

.favorites-wrapper::after {
right: -10px;
background: linear-gradient(to left, #070a15 0%, transparent 100%);
}

.favorites-track {
display: flex;
gap: 30px;
width: max-content;
min-width: 200%;
}

.favorite-card {
flex: 0 0 220px;
background: rgba(15,30,60,0.6);
border-radius: 12px;
text-decoration: none;
color: white;
transition:box-shadow 0.4s ease;
}

.favorite-card img {
width: 100%;
height: auto;
object-fit: contain;
background: #000;
border-radius: 12px 12px 0 0;
}

.favorite-card span {
display: block;
padding: 10px;
font-size: 13px;
text-align: center;
}

.favorite-card:hover {
box-shadow: 0 0 40px rgb(255, 0, 72);
}