/* Reset and Base Styles */



#contact-us p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #8a2be2;
    /* violet */
}

.contact-item img {
    margin-bottom: 5px;
}

.section {
    display: inline-block;
    vertical-align: top;
    padding-left: 50px;
    padding-right: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Font */
@font-face {
    font-family: calmer-bold;
    src: url(calmer-bold.ttf);
    font-weight: bold;
}

/* Headings */
h1,
h2 {
    margin-bottom: 10px;
    font-family: calmer-bold;
    color: black;
    font-size: 3.25rem;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff;
}

/* Sections */
header,
#services,
#salsa-party,
#testimonial,
footer {
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    vertical-align: top;
    min-height: 100vh;
}

header {
    background-color: linear-gradient(to right, #f5ac43, #2d1e10);
    background-image: url('header_image.jpg');
    overflow: hidden;
    position: relative;
}

#services {
    background-image: url('studio.jpg');
}

#salsa-party {
    background-image: url('club.jpg');
}

#testimonial {
    background-color: #111;
    padding: 40px 20px;
    text-align: center;
    background-image: url('testimonials.jpg');
}

footer {
    /*background: black url('your-footer-image.jpg') center/cover no-repeat;*/
    background: #000000;
}

/* Footer Links */
footer a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

footer a:visited {
    color: #FFD700;
}

/* Parallax Section Sizing */
section,
header {
    min-height: 700px;
}

header {
    min-height: 100vh;
}

/* Navigation Menu */
#main-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    z-index: 1000;
    text-align: center;
}

#menu-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#main-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#main-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Button */
.contactus {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.contactus:hover {
    background-color: #0056b3;
}

/* Services */
.service {
    display: inline-block;
    width: 30%;
    margin: 20px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 25px;
    padding: 20px;
    height: 500px;
    color: #fff;
}

.service p {
    font-size: 0.9rem;
}

/* Testimonial Blockquotes */
#testimonial .testimonial {
    justify-content: center;
    width: 100%;

}

#testimonial .testimonial blockquote {
    font-style: italic;
    display: inline-block;
    font-size: 1rem;
    color: #eee;
    background: rgba(0, 0, 0, 0.8);
    border-left: 5px solid #8dd8db;
    padding: 40px 20px 20px;
    margin: 20px 20px 0 0;
    max-width: 400px;
    width: calc(100% - 40px);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, background 0.2s ease;
    vertical-align: top;
    transform: translateY(-0px);
}

.quote-symbol {
    position: absolute;
    top: -50px;
    left: 5px;
    font-size: 10rem;
    color: rgba(141, 216, 219, 0.5);
    font-family: Georgia, serif;
}

#testimonial .testimonial blockquote:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.9);
}



#testimonial blockquote .signature {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
    font-style: normal;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service {
        width: 45%;
        height: auto;
    }

    h1,
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service {
        width: 100%;
    }

    h1,
    h2 {
        font-size: 2rem;
    }

    #main-menu ul {
        flex-direction: column;
        gap: 10px;
    }
    .carousel-item {   
        min-width: 100%
    }
    .carousel-track {
        display: flex; 
    }
}

@media (min-width: 600px) {
    #testimonial .testimonial blockquote {
        width: 45%;
    }
}

@media (min-width: 900px) {
    #testimonial .testimonial blockquote {
        width: 30%;
    }
}



/* Hamburger Button */
#menu-toggle {
    display: none;
    background: none;
    color: white;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    padding: 0 20px;
}

#salsa-party video {
    display: inline-block;
    vertical-align: top;
    padding: 50px;
    max-width: 500px;
    max-height: 100vh;
}

/* Mobile Nav Hidden By Default */
@media (max-width: 768px) {
    #menu-toggle {
        display: inline-block;
        float: right;
    }

    #menu-links {

        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        text-align: center;
    }

    #menu-links.active {
        display: flex;
    }

    #main-menu ul {
        gap: 10px;
        padding: 10px 0;
    }

    #main-menu a {
        padding: 10px;
        font-size: 1.1rem;
    }





}

@media (max-width: 1024px) {

    header,
    #services,
    #salsa-party,
    #testimonial,
    footer {
        padding: 0 0;
    }

    .service {
        margin: 0;
        margin-bottom: 20px;
        background: rgba(0, 0, 0, 0.55);
        background: linear-gradient(to bottom,
                transparent 0%,
                rgba(0, 0, 0, 0.3) 10%,
                rgba(0, 0, 0, 0.55) 50%,
                rgba(0, 0, 0, 0.75) 75%,
                rgba(0, 0, 0, 0.75));
    }

    section {
        height: auto;
    }

    #salsa-party video {
        display: inline-block;
        vertical-align: top;
        width: 80%;
    }
}


/* Add logo styling */
#main-menu .logo {
    padding-left: 20px;
    height: 50px;
    float: left;
    margin-right: 20px;
    transition: height 0.3s ease;
}

#menu-links {
    padding-top: 10px;
}

#main-menu.shrink .logo {
    height: 30px;
}

/* Shrink nav bar on scroll */
#main-menu.shrink {
    padding: 5px 0;
    background: rgba(0, 0, 0, 0.9);
}

footer {
    min-height: 300px;
}

#testimonial {
    min-height: 100px;
}

#main-menu.shrink #menu-links {
    padding: 0;
}

/*Fade Words*/
.word {
    position: absolute;
    opacity: 0;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    /* semi-transparent white */
    transition: opacity 2s ease-in-out;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    /* 💥 drop shadow */
}

.fade-in {
    opacity: 1 !important;
}


.sub-text {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    /* 💥 drop shadow */
    font-size: 2.0rem;
}

@media (max-width: 1024px) {
    .sub-text {
        font-size: 1rem;
    }
}
/*Call to action Scroll Down*/

.scroll-down {
    text-decoration: none;;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: sans-serif;
    font-size:30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    animation: fadeIn 2s ease-in-out;
}

.scroll-down .arrow {
    font-size: 40px;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0%) translateY(0);
    }
    40% {
        transform: translateX(0%) translateY(-10px);
    }
    60% {
        transform: translateX(0%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/*Testimonial carousel*/
.testimonial-carousel {
    width: 80%;
    margin: auto;
    overflow: hidden;
    position: relative;
    text-align: center;
  }
  
  .carousel-track {
    /*display: flex;  Turn on to turn on carosel*/ 
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .carousel-item {   
    box-sizing: border-box;
    padding: 1rem;
    width:100%;    
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
  }
  
  .left-arrow {
    left: 10px;
  }
  
  .right-arrow {
    right: 10px;
  }
  
