
:root {
    --brand-color: #5CB9FF; /* Main logo image */
    --background-color-dark: #00227E;
    --background-color-light: #A4C7FE;
    --text-color: #fff; /*white*/

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gilda Display', serif;
    margin: 0;
    /*background: linear-gradient(to bottom, var(--background-color-dark), var(--background-color-light));*/
    background: var(--background-color-dark);
    color: var(--text-color);
}


h1 {
    color: var(--text-color);
    font-family: 'Gilda Display', sans-serif;
}

h2 {
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
}

a {
    text-decoration: none;
    color: var(--text-color);
}



.about-tranquilfly, .studio-gallery, .services, .testimonials, .location, .social-media {
    /*padding: 20px 20px;*/
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.profile-image {
    max-width: 300px;
    margin: 20px;
    border-radius: 50%;
}

.gallery img {
    width: 30%;
    margin: 10px;
    border-radius: 10px;
}

.footer {
    background-color: var(--brand-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.map-placeholder {
    background-color: #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-image {
    max-width: 150px;
    height: auto;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
}

.carousel-item img { 
    object-fit: cover;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
    padding-top: 20px;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 0.5s;
}


.nav-item {
    min-width: 200px; /* Adjust this number as needed */
    text-align: center !important;
}



.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* or white for a soft glow */
    z-index: 1;
}


.carousel {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.carousel-track {
    display: flex;
    height: 100%;
    animation: scroll 40s linear infinite;
}

    .carousel-track img {
        height: 100%;
        flex-shrink: 0;
        width: 100vw;
        object-fit: cover;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-300vw);  
    }
}


H1.hero-heading {
    font-size: 4.0rem;
    color: white;

}

H2.hero-heading {
    font-size: 2rem;
    color: white;
}



.btn-primary {
    background-color: var(--brand-color);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    transition: background 0.3s ease;
}

    .btn-primary:hover {
        background-color: #3793C2!important;
        border:none;
    }

.navbar-s1{
    background-color: var(--brand-color);

}