
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 70vh;
position: relative;
overflow: hidden;
}

#hero .carousel-item {
height: 70vh;
background-size: cover;
background-position: center;
position: relative;
}

#hero .carousel-item::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.65);
z-index: 1;
}

#hero .carousel-container {
position: relative;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}

#hero .carousel-content {
text-align: center;
color: #fff;
max-width: 900px;
}

#hero h1,
#hero h2 {
font-size: 48px;
font-weight: 800;
margin-bottom: 20px;
}

#hero p {
font-size: 18px;
margin-bottom: 30px;
}

#hero .btn-get-started {
padding: 14px 32px;
border-radius: 6px;
background: var(--color-2);
color: #fff;
text-decoration: none;
}

/* SVG OKLAR */
#hero .custom-arrow {
position: absolute;
top: 0;
bottom: 0;
width: 8%;
z-index: 3;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: 0;
}

#hero .custom-arrow svg {
width: 48px;
height: 48px;
fill: none;
stroke: #fff;
stroke-width: 3;
stroke-linecap: round;
stroke-linejoin: round;
opacity: 0.8;
transition: transform .3s ease, opacity .3s ease;
}

#hero .custom-arrow:hover svg {
opacity: 1;
transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
#hero,
#hero .carousel-item {
height: 60vh;
}

#hero h1,
#hero h2 {
font-size: 32px;
}

#hero .custom-arrow svg {
width: 36px;
height: 36px;
}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
