/* Basic Reset & Body Styles */
body, h1, h2, h3, p, ul, li, a, figure, blockquote {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; /* Basic font, Andries can change this */
    line-height: 1.6;
}

body {
    color: #333;
    background-color: #f7f7f7;
}

#about-container {
    margin-top: 45vh;
}

.container {
    width: 90%;
    max-width:2000px;
    margin: 20px auto;

    margin-bottom: 2rem;
    padding: 20px;
    background-color: #fafafa;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
}



/* Header & Navigation */
header {
    background: linear-gradient(#00000055,#00000000); /* Dark blue-grey, change as needed */
    color: #ecf0f1;   /* Light grey text */
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
}

#logo{
    margin-top: 0.2rem;
    height: 5rem;
}

 .homepage {
    position: fixed;
}

header.header-scrolled {
    
    background-color: black; /* Example: White background when scrolled */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Slightly more pronounced shadow */
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
    margin: 0.5rem 0.5rem 0.5rem 0.5rem;
}

nav ul {
    margin-right: 1rem;
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #fff; /* Light grey link */
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 100px;
    transition: background-color 0.3s;
    
}

nav ul li a:hover, nav ul li a.active {
    background-color: #fff; /* Blue on hover/active */
    color: #D15528;
}

.mobile-menu-toggle {
    display: none; /* Hidden by default, shown in media query */
    font-size: 1.5em;
    margin-right: 1rem;
    background: none;
    border: none;
    color: #ecf0f1;
    cursor: pointer;
}

/* Hero Section (Homepage) */
.hero {
    position: relative; /* Crucial for positioning arrows and text overlay */
    text-align: center;
    color: white;
    height: 100vh; /* Or your preferred height */
    display: flex; /* Helps center hero-text if needed, but container handles image */
    align-items:center;
    justify-content: space-between;
    flex-direction: column;
    overflow: hidden; /* Important for slides */
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind text and arrows */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Fade transition */
    z-index: 1;
}

.hero-slide.active-slide {
    opacity: 1;
    z-index: 2; /* Active slide on top */
}

/* The hero-image class is no longer directly used for the slider like before,
   but if you use <img> tags inside .hero-slide, you might style them: */
/*
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/

.gradient-top {
    position: sticky;
    z-index: 3;
    background: linear-gradient(#000000cc,#00000000);;
    width: 100%;
    height: 35%;
}

.hero-text {
    position: relative; /* Ensure text is above slides */
    z-index: 3; /* Above slides and container, but below arrows if they overlap significantly */
    padding: 20px;
    background-color: none; /* Optional: slight dark background for text readability */
    border-radius: 8px;
    background: linear-gradient(#00000000, #000000cc);
    width: 100%;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4; /* Above hero-text and slides */
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    color: white;
    border: none;
    padding: 10px 15px; /* Adjust padding for size */
    font-size: 20px; /* Adjust icon size */
    cursor: pointer;
    border-radius: 50%; /* Makes it circular */
    transition: background-color 0.3s ease;
    line-height: 1; /* Helps center the arrow character */
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6); /* Darker on hover */
}

.prev-arrow {
    left: 20px; /* Adjust positioning */
}

.next-arrow {
    right: 20px; /* Adjust positioning */
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 0em;
    margin-top: 0.2rem;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 0em;
    margin-top: 0.3rem;
    
}

/* Call to Action Buttons */
.cta-button {
    display: inline-block;
    background-color: #ffffff; /* Primary Blue */
    color: black;
    padding: 5px 20px;
    text-decoration: none;
    border-radius: 100px;
    font-weight: bold;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    color: #D15528; /* Darker Blue */
}

.cta-button.secondary {
    background-color: #D15528; /* Orange */
    color: white;
}
.cta-button.secondary:hover {
    background-color: #b24b26; /* Darker Orange */
}
.cta-button.wide {
    width: 90%;
}

/* Homepage Sections */
#home-about, #home-portfolio, #home-packages, #home-testimonials {
    padding: 40px 20px;
    text-align: center;
}

#home-about h2, #home-portfolio h2, #home-packages h2, #home-testimonials h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #2c3e50;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}


.about-snippet {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.profile-pic-small {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
   margin: 1.5rem;
}

.portfolio-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.portfolio-item-home img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.portfolio-item-home img:hover {
    transform: scale(1.05);
}

.portfolio-item-home h3 {
    font-size: 1.2em;
    color: #333;
}

#portscrollpoint {
    height: 8rem;
    position: fixed;
    
}
/* Styles for Dynamic Portfolio Grid */

#prettyfont {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    margin-bottom: 0px;
}


.portfolio-grid-dynamic {
    display: flex;
    min-height: 70vh;
   
    gap: 15px; /* Space between grid items */
    align-items: start; /* Aligns items to the start of their grid area, crucial for masonry look */
    padding: 20px 0;
}

.port-column {

   
    width: 100%;
   
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
   
    
   
}

.portfolio-item {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    /* The actual height will be determined by the image content */
}

/* Class for items that should span 1 column (portraits/squares) */
.portfolio-item.portrait-span {
    grid-column: span 1;
}

/* Class for items that should span 2 columns (landscapes) */
.portfolio-item.landscape-span {
    grid-column: span 1;
}

.portfolio-item img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Match parent if you have rounded corners */
    transition: transform 0.3s ease;
}

.portfolio-item img:hover {
    transform: scale(1.03); /* Slightly smaller zoom for grid items */
   
}

/* Styles for the main container on portfolio page, if needed */
main.container h1 {
    text-align: center;
    margin-bottom: 10px;
}
main.container p { /* For the intro paragraph */
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #555;
}
.highlight-section {
    background-color: #fff6ef;
    border-color: #D15528;
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    padding: 30px;
    
}

.highlight-section h2 {
    color: #D15528;
    margin-bottom: 1rem;
}

.highlight-section p {
    color: #000000;
}

#home-packages h2 {
    color: #D15528;
}

/* About Page */
.profile-pic-large {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    float: left; /* Or use flexbox/grid for layout */
    margin: 0 0px 20px 0;
    margin-top: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

#localization {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#about-floating-block {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1.5rem;
}

#localization h2 {color: #2c3e50;}
#localization p { margin-bottom: 0.7rem; text-align: left;}


#about-content h1 { margin-bottom: 0px; text-align: center;}
#about-content h2 { margin-top: 5px; margin-bottom: 5px; color: #2c3e50; text-align: left; }
#about-content p { margin-bottom: 0.7rem; text-align: left;}



/* Portfolio Page */
.portfolio-category h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    text-align: left;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery img {
    width: 100%;
    height: 200px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Packages Page */
.packages-grid {
    display: flex;
    flex-wrap: wrap;
    /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
    /* align-items: center; */
    gap: 20px;
    margin-bottom: 30px;
}
.package-item {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    /* border: 1px solid #ddd; */
    padding: 20px;
    background-color: #fff;
    text-align: center;

    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.package-item h2 {
    color: #D15528;
    margin-bottom: 10px;
}
.package-item .price {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.package-item a {
  margin-top: auto;
  width: 100%
}

.package-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left; /* Align list items left */
    margin-left: auto;
    margin-right: auto;
    max-width: 250px; /* Center the list items container */
}
.package-item ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.package-item ul li::before {
    content: '✔'; /* Checkmark */
    color: #27ae60; /* Green */
    position: absolute;
    left: 0;
}
#add-ons, #custom-inquiry { text-align: center; margin-top: 30px; }

#add-ons {
    background-size: cover;
    padding: 0px;
}

#gradient {
    border-radius: 5px;
    padding: 15px;
    padding-top: 30px;
    height: 100%;

    background: radial-gradient(#fffffffb,#ffffffcb);
}

/* Blog Page */
.blog-listing .blog-post-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex; /* For image and text alignment */
    gap: 20px; /* Space between image and text */
    align-items: flex-start; /* Align items to the top */
}

.blog-summary-image {
    width: 200px; /* Adjust as needed */
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.blog-post-summary h2 a {
    text-decoration: none;
    color: #2c3e50;
}
.blog-post-summary h2 a:hover {
    color: #3498db;
}
.post-meta {
    font-size: 0.9em;
    color: #7f8c8d; /* Grey */
    margin-bottom: 10px;
}

/* Single Blog Post */
.blog-post-full h1 { margin-bottom: 10px; }
.blog-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}
.inline-image {
    max-width: 100%; /* Responsive */
    height: auto;
    border-radius: 5px;
    margin: 15px 0;
}
.blog-post-full blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: #f1f1f1;
    border-left: 5px solid #3498db;
    font-style: italic;
}
.back-to-blog {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

/* Contact Page */

.googleform {
width: 700px;
height: 1200px;

   
}
#contactcontainer {
height:fit-content;
display:flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
flex-direction: column;
}
#direct-contact {
    width: 590px;
    margin-top: 10px;
    margin-left: 2rem;
    margin-right: 2rem;
    flex-grow: 1;
     padding: 20px;
    background-color: #fff;
    text-align: center;
    height: fit-content;

    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);


}

#direct-contact h3 {
margin-top: 1rem;
margin-bottom: 0.5rem;
}

#direct-contact p {
margin-top: 1rem;
margin-bottom: 0.5rem;
}






#contact-form-section, #direct-contact {
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}
.form-group textarea {
    resize: vertical;
}
.social-icon {
    margin: 0 10px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #1c2833; /* Very dark blue */
    color: #bdc3c7;   /* Light grey text */
    text-align: center;
    padding: 30px 20px;
    margin-top: 30px;
}
.contact-info-footer p, .social-links-footer a {
    margin-bottom: 10px;
    color: #ecf0f1; /* Lighter grey for links/main info */
    text-decoration: none;
}
.social-links-footer a:hover {
    color: #3498db;
}
.contact-info-footer a:hover {
    text-decoration: underline;
}
footer p:last-child {
    margin-top: 20px;
    font-size: 0.9em;
}




/* Responsive Design */
@media (max-width: 768px) {

    #logo{
        margin-top: 0.5rem;
        height: 4rem;
    }

    #direct-contact {
        width: 410px;
    }

    .googleform {
        width: 500px;
        height: 1200px;
    }
    nav ul {
        display: none; /* Hide menu items */
        flex-direction: column;
        width: 100%;
        background-color: #000000;
        position: absolute;
        top: 0px; /* Adjust based on header height */
        left: 0;
        padding: 3.5rem 0;
    }
    nav ul.active { /* Class added by JS to show menu */
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    .mobile-menu-toggle {
        display: block; /* Show hamburger icon */
        z-index: 3;
    }

    .hero-text h1 {
        font-size: 2em;
    }
    .hero-text p {
        font-size: 1em;
    }
    .profile-pic-large {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
    .about-snippet {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .blog-post-summary {
        flex-direction: column; /* Stack image and text on small screens */
        align-items: center;
    }
    .blog-summary-image {
        width: 100%; /* Full width for blog summary image on small screens */
        max-width: 300px; /* Optional: constrain max width */
        margin-bottom: 15px;
    }

    .bg-slide {
        height: 65vh;
    }

    #about-floating-block {
        display: flex;
        margin-top: 2rem;
        flex-direction: column;
        justify-content:space-around;
    }
    
}
@media (max-width: 560px) {

    .portfolio-grid-dynamic {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #direct-contact {
            width: 240px;
        }

    #direct-contact i.fa-envelope{
        display: none;
    }

    .container {
        width: 80%;
    }

    .hero-text {
        padding-top: 4rem;
        padding-bottom: 5.5rem;
        
    }
    .hero-text h1 {
        margin: 0 1rem 0.5rem 1rem;

    }

    .googleform {
        width: 310px;
        height: 1350px;
    }
}

@media (max-width: 370px) {

    .googleform {
        width: 290px;
        height: 1350px;
    }

    #direct-contact {
        width: none;
        margin-left: 0px;
        margin-right: 0px;
    }

    .container {
        width: 83%;
    }



}