/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 500px;
    height: 600px;
    padding: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: auto;
    display: block;
}

.slideshow-bg-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.slide-bg-img {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 1;
    border-radius: 0;
    transition: opacity 0.5s;
}

.hero-content {
    max-width: 600px;
}

.hero-content-abs {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cta {
    background: #ff7c2b;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.hero-btn {
    background: #ff7c2b;
    color: #fff;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 1rem;
    transition: background 0.2s;
    text-decoration: none;
}

.hero-btn:hover {
    background: #e66a1c;
}

.hero-img {
    margin-left: 2rem;
    flex: 1 1 300px;
    max-width: 400px;
    transform: rotate(6deg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 24px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 270px;
    max-width: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: #eee;
}

.slide-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: none;
    border-radius: 24px;
    transition: opacity 0.5s;
}

.slide-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slide-dots-abs {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
    border: 2px solid #a259e6;
}

.dot.active, .dot:hover {
    opacity: 1;
    background: #a259e6;
}

.hero-kicker {
  font-size: 1rem;
  color: #ffe6c7;
  margin-bottom: 0.5rem;
}