
:root {
    --primary-color: #413B3B;
    --brand-color: #3B4141; /* Main logo image */
    --background-color: #F8F5F2;
    --text-color: #413B3B;
    --purple-color: #7F5AF0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif, Tahoma, Geneva, Verdana;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}


h1 {
    color: var(--text-color);
    font-family: 'Raleway', sans-serif;
}

h2 {
    color: var(--purple-color);
    font-family: 'Raleway', sans-serif;
}

a {
    text-decoration: none;
    color: var(--text-color);
}



.about-Hollis, .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;
}

.carousel-item img {
    height: 600px; /* or whatever height you want */
    object-fit: cover; /* This makes sure the image fills without squishing */
}


.headline {
    color: var(--primary-color);
    font-weight: bold;
}

/*.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: var(--brand-color);
        border-color: var(--brand-color);
        color: #2d3436;
    }*/

.logo-image {
    max-width: 150px;
    height: auto;
}


.nav-item {
    min-width: 200px; /* Adjust this number as needed */
    text-align: center !important;
}

.hero-container {
    position: relative;
    width: 100%;
    /*height: 400px;*/
    height: 60vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: fadeIn 2s ease-in forwards; /* Optional */
}

.hero-video {
    filter: brightness(70%) contrast(90%) saturate(80%);
}

.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;
}

.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;
}



H1.hero-heading {
    font-size: 4.0rem;
    color: white;

}

H2.hero-heading {
    font-size: 2rem;
    color: white;
}




/*defines animation*/
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.05); /* Optional: subtle zoom-in effect */
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply the animation to video and content */
.hero-video, .hero-content {
    animation: fadeIn 2s ease-in forwards;
}

/* If you want them to fade separately (video first, then content), you can delay one */
.hero-content {
    animation-delay: 0.5s;
}

.btn-primary {
    background-color: var(--purple-color);
    color: white;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    transition: background 0.3s ease;
}

    .btn-primary:hover {
        background-color: #6C40F0;
    }

