/*==========================================
  COLOR PALETTE
==========================================*/
:root{
    --primary:#0B95D2;
    --primary-dark:#0878AA;
    --background:#FAFAF8;
    --white:#FFFFFF;
    --text:#333333;
    --shadow:rgba(0,0,0,.15);

}



/*==================================================
 HERO
==================================================*/
/*==================================================
 HERO
==================================================*/

#hero{

    min-height: 38vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:35px 20px;

    background:linear-gradient(
        to bottom,
        #ffffff,
        #f5f9fc
    );

}

.hero-content{

    width:min(100%,1000px);

}

.hero-name{

    font-family:'Cinzel', serif;

    font-size:clamp(1.8rem,3vw,3.8rem);

    font-weight:600;

    letter-spacing:.18em;

    color:#0b95d2;

    text-transform:uppercase;

    margin-bottom:35px;

    text-shadow:
        0 4px 12px rgba(0,0,0,.20);

}

.hero-title{

/*    font-family:'Cinzel', serif; /*/
font-family:'Georgia', 'serif';
    font-size:clamp(4rem,11vw,9rem);
    

    font-weight:900;

    line-height:.90;

    color:#0b95d2;

    text-transform:uppercase;

    margin:.05em 0;

    text-shadow:
        0 10px 18px rgba(0,0,0,.22);

}

.hero-kids{

    margin-top:45px;

    font-family:'Caveat', cursive;

    font-size:clamp(2rem,4vw,3.6rem);

    color:#0b95d2;

}

/*==========================================
 HERO ANIMATION
==========================================*/

.hero-name,
.hero-title,
.hero-kids{

    opacity:0;

    animation:fadeUp 0.8s ease forwards;

}

.hero-name{

    animation-delay:.2s;

}

.hero-title:nth-of-type(1){

    animation-delay:.5s;

}

.hero-title:nth-of-type(2){

    animation-delay:.8s;

}

.hero-title:nth-of-type(3){

    animation-delay:1.1s;

}

.hero-kids{
padding: 0;imation-delay:1.4s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }
}

/*==================================================
 NAVIGATION
==================================================*/

#navbar{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(8px);

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}

#navbar ul{

    list-style:none;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    padding:8px 20px;

}

#navbar li{

    margin:0;

}

#navbar a{

    display:block;

    padding:12px 22px;

    border-radius:30px;

    text-decoration:none;

    color:var(--text);

    font-family:'Lato', sans-serif;

    font-weight:700;

    font-size:1.2rem;

    transition:
        background .30s ease,
        color .30s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

#navbar a:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-2px);

    box-shadow:0 4px 12px rgba(11,149,210,.30);

}

/*==================================================
 IMAGE SLIDER
==================================================*/

.slider-section{

    width:100%;

    display:flex;

    justify-content:center;

    padding:10px 20px;

    background:var(--background);

}

.slider{

    position:relative;

    width:min(95%,1400px);

    aspect-ratio:16/9;

    overflow:hidden;

    border-radius:20px;

  box-shadow:
    0 12px 35px rgba(0,0,0,.15),
    0 3px 8px rgba(0,0,0,.08);

    background:white;

}

.slides{

    width:100%;

    height:100%;

}

.slide{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    opacity:0;

    transition:opacity .8s ease-in-out;

}
.slide.active{

    opacity:1;

} 
.slide{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    display:block;

}*
.pause-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.80);
    color: #333;

    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.pause-btn:hover {
    background: white;
}

/*==================================================
 SLIDER BUTTONS
==================================================*/
.pause-btn {
    z-index: 100;
}
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
}
.prev,
.next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.75);
    color:#333;
    font-size:32px;
    cursor:pointer;
    transition:.3s;
}
.prev{
    left:20px;
    z-index:1000;
}

.next{
    right:20px;
 z-index:1000;
}

.prev:hover,
.next:hover{

    background:white;

    transform:translateY(-50%) scale(1.1);
}

/*==================================================
 BASIC PAGE SECTIONS
==================================================*/

.page-section {
    width: 100%;
    min-height: 500px;
    padding: 80px 20px;
    background: #ffffff;
}

.alternate-section {
    background: #f5f9fc;
}

.section-container {
    width: min(90%, 1200px);
    margin: 0 auto;
    text-align: center;
}

.page-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.page-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    letter-spacing: 1px;
}
/*==================================================
 BACK TO TOP BUTTON
==================================================*/

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: var(--primary);
    color: white;

    font-size: 26px;
    cursor: pointer;

    z-index: 1000;

    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease,
                transform .3s ease,
                visibility .3s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-4px);
    background: var(--primary-dark);
}