body {
    background-color: rgb(255, 224, 233);
    margin: 0;
    font-family: sans-serif;
}
.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
.links {
    text-align: center;
    padding: 8px 0 5px 0;
    background-color: rgb(255, 172, 195);
    margin-top: 0px;
}
.banner {
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
    height: 510px;
}
.banner img {
    width: 100%;
    display: block;
    border: 1.2px solid rgb(250, 250, 250);
}
.firstbanner,
.secondbanner {
    position: absolute;
    inset: 0;
     animation-timing-function: ease-in-out;
}
.firstbanner {
    animation: fade1 10s infinite;
}
.secondbanner {
    animation: fade2 10s infinite;
}
@keyframes fade1 {
    0%, 45%   { opacity: 1; }
    55%, 95%  { opacity: 0; }
    100%      { opacity: 1; }
}
@keyframes fade2 {
    0%, 45%   { opacity: 0; }
    55%, 95%  { opacity: 1; }
    100%      { opacity: 0; }
}
.banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 8vw, 8rem);
    font-family: 'Molle', cursive;
    background: linear-gradient(
        270deg,
        #ff98b6,
        rgb(165, 227, 243),
        #ffa87f,
        rgb(239, 157, 255)
    );
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 10s ease infinite;
    text-shadow: 4px 4px 8px rgba(255, 255, 255, 0.35);
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.content {
    text-align: center;
    padding: 10px 0;
    border: 1.2px solid rgb(250, 250, 250);
    background:
        linear-gradient(rgba(255, 168, 128, 0.8), rgba(255, 255, 255, 0.6)),
        url('images/img3.png');
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}
.content h2 {
    font-size: 2rem;
    color: rgb(109, 191, 216);
    font-family: "Pacifico", cursive;
    margin-right: 10px;
    text-shadow: 3px 3px 8px rgb(255, 255, 255);
    display: inline; 
}
.content h1 {
    font-size: 2.5rem;
    color:rgb(255, 124, 161);
    text-shadow: 3px 3px 8px rgb(255, 255, 255);
    font-family: "Molle", cursive;
    margin: 0;
    display: inline; 
}
a {
    color: rgb(110, 110, 110);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    gap: 15px;
    text-decoration: none;
}
.content p {
    font-size: 1.5rem;
    color: rgb(92, 92, 92);
    padding: 0 20px;
    font-family: "Pacifico", cursive;
}
.promo {
    border: 1.2px solid rgb(250, 250, 250);
    background-color: rgb(165, 227, 243);
    text-align: center;
    padding: 8px;
    margin-bottom: 15px;
    overflow: hidden; 
}
.promo p {
    font-size: 1rem;
    color: rgb(92, 92, 92);
    font-family: "Inter", sans-serif;
    margin: 0;
    display: inline-block; 
    white-space: nowrap; 
    animation: slide 15s linear infinite;
}
@keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.gallery {
    border: 1.2px solid rgb(250, 250, 250);
    background-color: rgb(250, 250, 250);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
}
.gallery h2 {
    width: 100%;
    font-size: 2rem;
    color: rgb(255, 172, 195);
    font-family: "Pacifico", cursive;
    text-shadow: 1px 1px 3px rgb(75, 75, 75);
    margin: 10px 0;
    padding: 10px 0px 5px 20px;
    text-align: center;
}
.gallery-item {
    width: 140px;
    text-align: center;
    padding-bottom: 20px;
}
.gallery-item img{
    width: 90%;
    border: 2px solid rgb(255, 224, 233);  
}
.gallery-item img:hover {
    border-color: rgb(255, 168, 128);
    transform: scale(1.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.gallery-item div.desc{
   font-size: 1rem;
    color: rgb(128, 128, 128);
    font-family: "Inter", sans-serif;
    padding-bottom: 5px;
}
.social {
    border: 1.2px solid rgb(250, 250, 250);
    background-color: rgb(239, 157, 255);
    text-align: center;
    padding: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.social h2 {
    font-size: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgb(75, 75, 75);
    font-family: "Pacifico", cursive;
    margin: 0;
    display: inline;
}
.social img {
    width: 40px;
    margin: 0 8px 10px 8px;
    vertical-align: middle;
    cursor: pointer;
}
.social svg {
    vertical-align: middle;
    margin: 0 8px 10px 8px;
    cursor: pointer;
}
.footer {
    text-align: center;
    padding: 2px 0;
    background-color: rgb(255, 172, 195);
    color: rgb(110, 110, 110);
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(255, 172, 195);
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: 1.2px solid white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.btn:hover {
    background-color: rgb(255, 124, 161);
    transform: translateY(-1px);
}
.btn:active {
    background-color: rgba(255, 168, 128, 0.9);
    transform: scale(0.96);
}
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}
.modal-box {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 224, 233, 0.9)),
    url('images/img2.png');
    border: 1.2px solid rgba(255, 255, 255, 0.8);
    width: 85%;
    max-width: 350px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}
.modal-box img {
    width: 80%;
    margin: 20px 15px;
    border: 1.2px solid white;
}
#modal-title {
    font-family: "Pacifico", cursive;
    font-size: 1.8rem;
    color: rgb(255, 124, 161);
    margin: 10px 0;
}
/* mobile design */
@media (max-width: 600px) {
    .banner {
        height: 193px;
        padding-bottom: 10px;
    }
    .banner h1 {
        font-size: clamp(3rem, 10vw, 3rem);
        text-align: center;
        width: 90%;          
    }
    .content h1 {
        font-size: 2rem;
    }
    .content h2 {
        font-size: 1.5rem;
    }
    .content p {
        font-size: 1.1rem;
    }
    .gallery-item {
        width: 45%;
    }
    .promo p {
        font-size: 0.9rem;
    }
}
