/* Font Imports */

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Meow+Script&display=swap');


.delius-swash-caps-regular {
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}

.delius-regular {
  font-family: "Delius", cursive;
  font-weight: 400;
  font-style: normal;
}


.meow-script-regular {
  font-family: "Meow Script", cursive;
  font-weight: 400;
  font-style: normal;
}


.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
  }




  

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #4a4a4a;
    background-color: #f5f5dc; /* Earth-tone background */
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-bar {
    list-style: none;
    font-family: delius-swash-caps-regular, cursive; /* Use Delius Swash Caps font for the navbar */
    font-size: 1.2rem; /* Adjust font size for the navbar */    
    margin: 0;
    padding: 20px 0; /* Adjusted padding for better spacing */;
    display: flex;
    justify-content: center;
    background-color: white; /* White background for the navbar */
}

.mobile-nav-bar {
    display: none;
}   /* Hide mobile nav bar by default */

.nav-bar li {
    margin: 0 25px;
}

.nav-bar a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-bar a:hover {
    color: #8b4513; /* Earth-tone hover color */
}

.video-container video{
    width: 100%; /* Make the video responsive */
    max-height: 400px;
    object-fit: contain; /* Crop the video to fit the container */
    display: block;
    margin: 10px auto; /* Center the video */
    
}

.headshot-image {
    height: 80vh; /* Set the height of the section */
    background-attachment: fixed; /* This creates the parallax effect */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-size: cover; /* Ensure the image covers the entire section */
}

/* Center the h1 section over the about-content */
#about {
    text-align: center; /* Center-align all text inside the #about section */
    padding: 10px;
}

#about h1 {
    margin-bottom: 20px; /* Add spacing between the heading and the content */
}

.about-content {
    margin: 0 auto; /* Center the content horizontally */
    max-width: 600px; /* Set a maximum width for the content box */
    font-family: delius-regular, cursive; /* Use Delius font for the content box */
    font-size: 1.2rem; /* Adjust font size for the content box */
    padding: 20px;
    border: 1px solid #ccc; /* Optional: Add a border around the box */
    border-radius: 10px; /* Optional: Add rounded corners */
    background-color: #f9f9f9; /* Optional: Add a light background color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.video-playback {
    display: flex;
    justify-content: center; /* Center the video horizontally */
    align-items: center; /* Center the video vertically */
    background-color: #f5f5dc; /* Earth-tone background */
}

.video-playback video {
    max-width: 250px;
    width: 100%;
    height: auto;
}


/* Home Section */
#home {
    background-color: light beige; /* Light beige */
    height: 60vh;
    padding-top: 80px; /* Add padding to avoid overlap with fixed navbar */
}

/* About Section */
#about {
    background-color: #b9ac7b; /* Light earth-tone */
}

/* Services Section */
#services {
    background-color: #dcd2c0; /* Soft tan */
}

/* Portfolio Section */
#portfolio {
    height: auto;
    text-align: center;
    padding: 20px;
    background-color: #cbb59d; /* Warm brown */
}

#portfolio h1 {
    margin-bottom: 20px;
}

#portfolio h3 {
    font-size: 20px;
}

/* Blog Section */
#blog {
    background-color: #b8a089; /* Muted brown */
}

/* Parallax Section */
.parallax {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* text-shadow: 5px 7px 7px #313403; Add shadow to text for better visibility */
}

.bottomleft {
    position: fixed;
    bottom: 20%;
    left: 20%;
    font-size: 4rem
}

.overlay-text{
    font-family: Meow Script, cursive; /* Use Meow Script font for the overlay text */
    position: relative;
    bottom: -20%;
    left: -30%;
    padding: 0px;
    font-size: 5rem;
    font-weight: bold;
    color: rgb(14, 14, 64);
    max-width: 80%;
    z-index: 2; /* Ensure the text is above the background image */
}

.parallax-text {
    text-align: center;
    transform: translateX(-110%) translateY(60%);
    font-family: Meow Script, cursive; /* Use Meow Script font for the parallax text */
    font-size: 4rem; /* Adjust font size for the parallax text */
    font-weight: bold;
    color: rgb(14, 14, 64); /* Black text color for the parallax text */  
    z-index: 2; /* Ensure the text is above the background image */
}

.parallax-image {
    background-image: url('images/Sadiecrophat.JPG'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    z-index: -1; /* Ensure the image is behind the text */
    
}

h1 {
    text-align: center;
    font-family: "Delius Swash Caps", cursive; /* Use Delius Swash Caps font for the h1 text */
    font-size: 2rem; /* Adjust font size for the h1 text */    
    font-weight: bold;  /* Bold font style */
    text-shadow: #4a4a4a 2px 2px 5px; /* Optional: Add a shadow effect to the text */  
}

#about, #headshot, #services, #portfolio, #blog{
    padding: 80px 20px; /* Add padding to avoid overlap with fixed navbar */
    text-align: center;
    font-family: "Delius Swash Caps", cursive;; /* Use Dalius Swash Caps font for the about content */
    font-size: 1.5rem; /* Adjust font size for the about content */
    line-height: 1.6; /* Increase line height for better readability */
    color: #4a4a4a; /* Dark gray text color */
}

/* Center the Gallery heading over the thumbnail boxes */
#gallery h1 {
    text-align: center; /* Center the text horizontally */
    margin-bottom: 20px; /* Add spacing between the heading and the thumbnails */
    font-size: 2rem; /* Adjust font size if needed */
    font-weight: bold; /* Make the text bold */
    text-shadow: #4a4a4a 2px 2px 5px; /* Optional: Add a shadow effect to the text */
}

/* Content Section */
.content {
    padding: 80px 20px; /* Add padding to avoid overlap with fixed navbar */
    text-align: center;
}

/* Gallery Section */
.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 thumbnails per row */
    grid-auto-rows: 1fr; /* Make all rows the same height */
    gap: 10px; /* Reduce space between grid items */
    align-items: stretch; /* Stretch thumbnails to fill row height */
    justify-items: center; /* Center thumbnails horizontally in each cell */
    max-width: 1200px;
    margin: auto;
    outline: 2px solid black;
    border-radius: 10px;
    padding: 10px; /* Add padding around the grid */
}



.thumbnail,
.thumbnail-photo {
    width: 95%; /* Consistent width for all thumbnails */
    /* max-width: 350px; Optional: set a max width for uniformity */
    aspect-ratio: 4/3; /* Consistent aspect ratio */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.thumbnail img,
.thumbnail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 5px;
    display: block;
}


.thumbnail:hover,
.thumbnail-photo:hover {
    transform: scale(1.15);
}

.hatthrown {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    display: block;
    padding: 20px;
    outline: 2px solid black;
    margin: 10px auto; /* Center the image horizontally */
}


@media (max-width: 600px) {
    .hatthrown {
        max-width: 90vw;
        padding: 10px;
    }
}

.shrink {
    width: auto;
    height: 25%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column; /* Stack image/video and text vertically */
}

.lightbox img,
.lightbox video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.lightbox-text {
    position: absolute;
    bottom: 10%; /* Position the text near the bottom of the lightbox */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better readability */
    padding: 10px 20px;
    border-radius: 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #8b4513; /* Earth-tone footer */
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Adjust the navigation bar */
    .mobile-nav-bar {
        display: none; /* Hide navigation links by default */
        flex-direction: column; /* Stack items vertically */
        padding: 10px 0; /* Reduce padding */
    }

    .mobile-nav-bar li {
        margin: 10px 0; /* Add spacing between items */
    }

    .mobile-nav-bar a {
        padding: 10px; /* Adjust padding for smaller screens */
        font-size: 1rem; /* Reduce font size */
    }

    .headshot-image {
        height: 50vh; /* Reduce height for mobile */
        width: auto;
    }
    /* Adjust section heights */
    #home, #about, #services, #portfolio, #blog {
        height: auto; /* Allow sections to adjust height dynamically */
        padding: 20px; /* Add padding for better readability */
    }

    .about-content {
        font-family: delius-regular, cursive; /* Use Delius font for the content box */
        font-size: 1rem; /* Reduce font size for mobile */
        max-width: 100%; /* Allow content to take full width on mobile */
        padding: 10px; /* Reduce padding for smaller screens */

    }

    /* Parallax sections */
    .parallax {
        background-attachment: scroll; /* Disable fixed background for better performance on mobile */
    }

    /* Footer */
    footer {
        padding: 20px; /* Add more padding for better spacing */
        font-size: 0.9rem; /* Reduce font size */
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */

    .headshot-image {
        max-width: 100%; /* Make the image responsive */
        height: auto; /* Maintain the aspect ratio */
    }

    .mobile-nav-bar a {
        display: none; /* Hide navigation links by default */
        font-size: 0.9rem; /* Smaller font size */
    }

    .mobile-nav-bar.show {
        display: flex; /* Show the menu when toggled */
    }

    .nav-bar.hide {
        display: none; /* Hide the menu when toggled */
    }

    .overlay-text {
        font-size: .75rem; /* Reduce text size in overlay sections */
    }

    .parallax-text {
        font-size: 1.5rem; /* Reduce text size in parallax sections */
    }

    .content {
        padding: 40px 10px; /* Reduce padding for smaller screens */
    }

    .about-content {
        font-family: delius-regular, cursive; /* Use Delius font for the content box */
        max-width: 100%; /* Allow content to take full width on mobile */
        font-size: 0.9rem; /* Further reduce font size for mobile */
        padding: 10px; /* Reduce padding for smaller screens */
    }
}

General Navigation Styles
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: red;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none; /* Hidden by default */
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger icon on mobile */
    }

    .nav-bar {
        display: none; /* Hide navigation links by default */
        flex-direction: column; /* Stack links vertically */
        position: absolute;
        font-family: arial, sans-serif;
        font-size: 1.0rem; /* Adjust font size for mobile */
        font-weight: bold; /* Bold font style */
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 50vh;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-bar.show {
        display: flex; /* Show the menu when toggled */
    }

    .nav-bar li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-bar a {
        padding: 10px;
        font-size: 1rem;
        display: block;
        color: #4a4a4a;
        text-decoration: none;
        transition: color 0.3s;
    }

    .nav-bar a:hover {
        color: #8b4513; /* Earth-tone hover color */
    }

    .nav-bar.show {
        display: flex; /* Show the menu when toggled */
    }

    .nav-bar.hide {
        display: none; /* Hide the menu when toggled */
    }

    .overlay-text {
        font-size: 2rem; /* Reduce text size in overlay sections */
    }
}

.carousel-inner {
    display: flex;
    transition: transform 2s ease-in-out;
    font-family: pacifico, sans-serif; /* Use Pacifico font for the carousel items */
    font-size: 1.2rem; /* Adjust font size for the carousel items */    
    overflow: hidden; /* Ensure content outside the container is hidden */
    position: relative;
    width: 100%;
}

.carousel-item {
    min-width: 100%;
    display: none; /* Hide all slides by default */
    font-family: pacifico, sans-serif; /* Use Pacifico font for the carousel items */
    font-size: 1.2rem; /* Adjust font size for the carousel items */    
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-item.active {
    display: block; /* Show only the active slide */
}

.poster-image {
    max-width: 30%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}