/* body styles */

body, html {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: var(--body-clr);

}


html {
    /*   *****   Storing Colors In Variables   *****  */
    --body-clr: #ffffff;
    /* --body-clr: #f8f5f4; */
    --primary-clr:  #b1a3a0;
    --primary-light-clr: #c0b0ad;
    --title-clr: #967e78;
    --title-light-clr: #fff;
    /* --primary-clr: #413735;
    --primary-light-clr: #cacaca; */
    --links-clr: #186f78;
    --text-clr: #3f7277;
    --menu-clr:  #b1a3a0;
    --menu-light-clr: #c0b0ad;
    --primary-extra-light-clr: #e4d5d2;
    
  }

.about, .featured-works, .gallery, .process, .testimonials, .events, .contact, .footer {
    padding: 0;
}

/* text styles */ 

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

h1 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 4em;
    letter-spacing: 0.05em;
}

h2 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 2em;
    letter-spacing:  0.05em;
    color: var(--title-clr);
}

h3 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 1.5em;
    letter-spacing:  0.05em;
}

p {
    font-family: "EB Garamond", serif;
    font-size: 1.4em;
}

blockquote {
    font-family: "EB Garamond", serif;
    font-weight: 200;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    color: aliceblue;
    text-align: center;
    text-wrap: balance;
}

/* Header */

header {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
}

/* Nav Menu */

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .logo img {
    max-height: 70px;
}

header .nav-menu {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    color: rgb(202, 202, 202);
    text-align: center;
    padding: 20px 60px 20px 0px;
    justify-content: space-between;
}

header .logo {
    padding: 30px 0px 0px 60px;
}

nav li {
    text-decoration: none;
}

header .nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .nav-menu ul li a {
    color: var(--menu-light-clr); 
    margin: 0 15px;
    text-decoration: none; 
    font-size: 18px; 
    font-weight: 700;
    letter-spacing: 4px;
    transition: color 0.3s;
    position: relative; 
}

header .nav-menu ul li a:hover {
    color: var(--menu-clr);
    transition: color 0.3s;
}

header .nav-menu ul li a:after {
    content: '';
    display: block;
    width: 0;
    height: 3px; 
    background: var(--menu-clr); 
    position: absolute;
    left: -2px;
    bottom: -8px; 
    transition: width 0.3s ease;
}

header .nav-menu ul li a.active {
    color: var(--menu-clr);
}

header .nav-menu ul li a:hover:after,
header .nav-menu ul li a.active:after {
    width: 100%; 
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 20px 60px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--title-clr) ;
    margin: 4px 0;
    transition: all 0.3s;
    
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    transition: all 0.3s;
    z-index: 100;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    text-decoration: none;
    color: rgb(202, 202, 202); 
    font-weight: 700;
    letter-spacing: 4px;
}

@media (max-width: 1032px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
        padding: 20px 60px;
    }
}

@media (max-width: 768px) {

    header .logo img {
        max-height: 50px;
    }

    header .logo {
        padding-left: 30px;
    }
    .hamburger {
        padding-right: 30px;
    }
}


/* Hero Content */

.hero {
    margin-top: -103px;
    background: url('../img/hero_002.jpg') no-repeat;
    background-size: cover;
    background-position: right 0 top 0;
   
    width: 100%;
    min-height: 735px;
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
    text-align: left;
    padding:60px;
    
    
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    margin: 0;
}

.byline {
    color: var(--primary-clr);
    font-size: 1.6em;
}

.title {
    color: var(--title-clr);
    padding: 0;
    margin: 0;
}


@media (min-width: 1401px) {
    .hero {
        padding: 100px; 
        background-position: right 0 top -135px;
    }

    header .nav-menu {
        padding: 30px 100px 0px 0px;
    }

    header .logo {
        padding: 30px 0px 0px 100px;
    }


}

/* Media query for screens 850px and below */





/* Color 111416 */

.flat-button {
    position: relative;
    margin: 60px 0px;
    padding: 20px 60px;
    color: #ffffff; /* Text color */
    background-color: var(--title-clr);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, box-shadow 0.3s;
    top: 30px;
}

.flat-button:hover {
    background-color:var(--primary-extra-light-clr);
    color: var(--title-clr);
}

@media (max-width: 735px) {
    .hero {

        background-image: none;
        flex-direction: column; /* Stack items vertically */
        padding: 0px; /* Adjust padding */
        text-align: center; /* Center the text */
    }
    
    .hero-content {
        min-height: 835px;
        order: 1; /* Move hero content above the image */
       
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-image {
        order: 2; /* Move the image below the content */
        width: 100%;
        height: auto;
        background: url('../img/debbie_hero_mobile.jpg') no-repeat center center;
        background-size: cover;
        aspect-ratio: 1;
    }

    .flat-button {
        align-self: center;
        width: auto;
    }
}

@media (max-width: 454px) {

    .byline {
        font-size: 1.2em;
        margin: 10px;
    }


}

/* about section */

.about {
    /* background-image: url('../img/craft_paper.jpg');
    background-size: 20%; */
    display: flex;
    width: 100%; 
    box-sizing: border-box; 
    justify-content: space-between;

}


.intro-left-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    text-align: left;

}

.intro-left-content {
    max-width: 800px;
    margin-inline: auto ;
    padding: 30px;
}

.intro-right-section {
    flex: 1;


}

.intro-right-section img {
   
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (min-width: 1401px) {

    .about {
        max-height: 600px;
    }
    .intro-left-section {
        padding: 60px 100px; /* Increase padding for larger screens */
        text-align: left; /* Center text horizontally on larger screens */
    }
    .intro-right-section {
        max-width: 600px;
    }
}

@media (max-width: 1024px) {
    .about {
        flex-direction: column;
    }



    .intro-left-section {
        padding:30px;
    }

    .intro-right-section {
        padding: 0px;
    }

    .intro-right-section img {
        height: auto; /* Adjust image height for mobile */
    }
}

/* quote section 1 */

.quote-section-1 {

    padding:60px;
    background-image: url(../img/felt_texture_001.png);

}

.quote-1 {
    border: solid 1px;
    border-color: aliceblue;
    max-width: 900px;
    margin: 0 auto;

}

@media (max-width: 735px) {
    .quote-section-1 {
        padding: 20px;
    }

}


/* featured section */

 .featured {

    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 90px 0 120px 0;

 }

 .featured h2 {
    margin-bottom: 80px;
 }

.flex-container {
    width: 85%;
    margin: 0 auto 90px;
    display: flex;
    flex-direction: row;
    gap: 1em; 
     
}

.flex-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.left-container {
    flex: 1 1 400px;
}

.right-container {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1em; 


}

.right-bottom-container {
    display: flex;
    gap: 1em; 
}

.right-bottom-left-container {
    flex: 1 200px;
}

.right-bottom-right-container {
    flex: 1 200px;
}


@media (max-width: 1024px) {
    .flex-container {
      flex-direction: column;
    }
  }


/* Quote Section 2 */


.quote-section-2 {

    padding:60px;
    background-image: url(../img/felt_texture_002.png);
    background-size: 40%;
    background-repeat: repeat;
    border-image: linear-gradient(
        hsla(0, 0%, 10%, 0.6),
        hsla(0, 0%, 20%, 0.6))
        fill 1;

}

.quote-2 {
    border: solid 1px;
    border-color: aliceblue;
    max-width: 900px;
    margin: 0 auto;

}

@media (max-width: 768px) {
    .quote-section-2 {
        padding: 20px;
    }

}

   /* Gallery Section */

.gallery {
    background-color: antiquewhite;
    text-align: center;
    padding: 90px 60px 120px 60px;
}




.gallery-grid {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:1em;
    width: 85%;
}

.gallery-grid img {
    width: calc(25% - 1em); /* Each image takes up 25% of the container width, minus the gap */
    height: auto;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .gallery {
        padding: 30px;
    }

    .gallery-grid {
        width: 95%;
    }

    .gallery-grid img {
        width: calc(50% - 1em); /* Each image takes up 50% of the container width on smaller screens */
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 15px;
    }
    .gallery-grid {
        width: 100%;
    }


    .gallery-grid img {
        width: 100%; /* Each image takes up 100% of the container width on the smallest screens */
    }
}

/* Quote Section 3 */


.quote-section-3 {

    padding:60px;
    background-image: url(../img/felt_texture_004.jpg);
    background-size: 50%;
    background-repeat: repeat;

    

}

.quote-3 {
    border: solid 1px;
    border-color: aliceblue;
    max-width: 900px;
    margin: 0 auto;

}

@media (max-width: 768px) {
    .quote-section-3 {
        padding: 20px;
    }

}
/* process section */

.process-section-1 {
    /* background-image: url('../img/craft_paper.jpg');
    background-size: 20%; */
    display: flex;
    flex-wrap: wrap; /* Prevent wrapping on desktop */
    width: 100%; /* Ensure section takes full width */
    box-sizing: border-box; /* Include padding and border in the element's total width */ 
}

.process-left-section-1 {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    text-align: left;
    flex: 1 1;
}

.process-right-section-1 {
    display: flex;
    justify-content: center; /* Center text vertically */
    text-align: left;
    padding: 0;
    aspect-ratio: 1/ 1;
    flex: 1 0;
}


.process-right-section-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (min-width: 1401px) {
    .process-left-section-1 {
        padding: 100px; /* Increase padding for larger screens */
        text-align: left; /* Center text horizontally on larger screens */
    }
}

@media (max-width: 1024px) {
    .process-section-1 {
        flex-direction: column;
    }

    /* .process-left-section-1, .process-right-section-1 {
        flex: none;
        width: 100%;
    } */

    .process-left-section-1 {
        padding:20px;
    }

    .process-right-section-1 {
        padding: 0px;
    }

    /* .process-right-section-1 img {
        height: auto; 
    } */
}

/* Process Section 2 */

.process-section-2 {
    /* background-image: url('../img/craft_paper.jpg');
    background-size: 20%; */
    display: flex;
    flex-wrap: wrap; /* Prevent wrapping on desktop */
    width: 100%; /* Ensure section takes full width */
    box-sizing: border-box; /* Include padding and border in the element's total width */ 
}

.process-left-section-2 {
    display: flex;
    justify-content: center; /* Center text vertically */
    text-align: left;
    padding: 0;
    aspect-ratio: 1/ 1;
    flex: 1 0;

}

.process-right-section-2 {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    text-align: left;
    flex: 1 1;

}


.process-left-section-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (min-width: 1401px) {
    .process-right-section-2 {
        padding: 100px; /* Increase padding for larger screens */
        text-align: left; /* Center text horizontally on larger screens */
    }
}

@media (max-width: 1024px) {
    .process-section-2 {
        flex-direction: column;
    }

    /* .process-left-section-2, .process-right-section-2 {
        flex: none;
        width: 100%;
    } */

    .process-left-section-2 {
    padding: 0px;
    order: 2;
    }

    .process-right-section-2 {
        padding: 20px;
        order: 1;
    }


    /* .process-left-section-2 img {
        height: auto; 
    } */
}

/* Process Section 3 */

.process-section-3 {
    /* background-image: url('../img/craft_paper.jpg');
    background-size: 20%; */
    display: flex;
    flex-wrap: wrap; /* Prevent wrapping on desktop */
    width: 100%; /* Ensure section takes full width */
    box-sizing: border-box; /* Include padding and border in the element's total width */ 
}

.process-left-section-3 {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    text-align: left;
    flex: 1 1;
}

.process-right-section-3 {
    display: flex;
    justify-content: center; /* Center text vertically */
    text-align: left;
    padding: 0;
    aspect-ratio: 1/ 1;
    flex: 1 0;
}


.process-right-section-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (min-width: 1401px) {
    .process-left-section-3 {
        padding: 100px; /* Increase padding for larger screens */
        text-align: left; /* Center text horizontally on larger screens */
    }
}

@media (max-width: 1024px) {
    .process-section-3 {
        flex-direction: column;
    }

    /* .process-left-section-3, .process-right-section-3 {
        flex: none;
        width: 100%;
    } */

    .process-left-section-3 {
        padding:20px;
    }

    .process-right-section-3 {
        padding: 0px;
    }

    /* .process-right-section-3 img {
        
        height: auto; 
    } */
}

/* Process Section 4 */

.process-section-4 {
    /* background-image: url('../img/craft_paper.jpg');
    background-size: 20%; */
    display: flex;
    flex-wrap: wrap; /* Prevent wrapping on desktop */
    width: 100%; /* Ensure section takes full width */
    box-sizing: border-box; /* Include padding and border in the element's total width */ 
}

.process-left-section-4 {
    display: flex;
    justify-content: center; /* Center text vertically */
    text-align: left;
    padding: 0;
    aspect-ratio: 1/ 1;
    flex: 1 0;

}

.process-right-section-4 {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    text-align: left;
    flex: 1 1;

}


.process-left-section-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (min-width: 1401px) {
    .process-right-section-4 {
        padding: 100px; /* Increase padding for larger screens */
        text-align: left; /* Center text horizontally on larger screens */
    }
}

@media (max-width: 1024px) {
    .process-section-4 {
        flex-direction: column;
    }

    /* .process-left-section-4, .process-right-section-4 {
        flex: none;
        width: 100%;
    } */

    .process-right-section-4 {
        padding: 20px;
        order: 1;
    }

    .process-left-section-4 {
        padding: 0px;
        order: 2;
    }

    /* .process-left-section-4 img {
        height: auto; 
    } */
}

/* Quote Section 4 */


.quote-section-4 {

    padding:60px;
    background-image: url('../img/felt_texture_005.jpg');
    background-size: 50%;
    background-repeat: repeat;

    

}



.quote-4 {
    border: solid 1px;
    border-color: aliceblue;
    max-width: 900px;
    margin: 0 auto;

}

@media (max-width: 768px) {
    .quote-section-4 {
        padding: 20px;
    }

}

/* Tesitmonials */

.testimonial-section {

    padding: 60px;
    text-align: center;
}

.testimonials-container {

    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* max-width: 1024px;
    margin: 0 auto;
    display: flex;
       gap: 20px;
   
    padding: 20px;
    text-align: left; */
}


.testimonial-1 {    
    background-color: var(--primary-extra-light-clr);
    border-radius: 30px;
    text-align: left;
    flex: 2 1 350px; 
    padding: 40px;
    width: 60%;  
    position: relative;
}

.testimonial-1 {    
    background-color: var(--primary-light-clr);
    border-radius: 30px;
    text-align: left;
    flex: 2 1 350px; 
    padding: 40px;
    width: 60%;  
    position: relative;
}

.testimonial-2 {
    background-color:var(--primary-light-clr);
    border-radius: 30px;
    text-align: left;
    flex: 1 1 350px; 
    width: 30%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    
}

.testimonial-text {
    color: #f0f0f0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-text:before {
    content: "\201C";
    font-size: 12rem;
    line-height: 0;
    position: absolute;
    top: 50px;
    left: 0px;
    font-family: "EB Garamond";
    color: rgba(255, 255, 255, 0.25);
    z-index: -1;
}

.testimonial-text:after {
    content: "\201D";
    font-size: 12rem;
    line-height: 0;
    position: absolute;
    bottom: -40px;
    right: 10px;
    font-family: "EB Garamond";
    color: rgba(255, 255, 255, 0.25);
    z-index: 0;
}

.testimonials-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Lato', serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--title-clr);
    margin: 0;
}

.author-location {
    color: #f5f5f5;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 30px;

    }
}



/* Events Section */


.events-section {
    /* background-image: url('../img/craft_paper.jpg');
    background-size: 20%; */
    padding: 60px;
    text-align: center;
}



.event-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;

}

.event-container img {
    width: 100%;
    height: auto;
    display: block;
}

.bottom-image {
    grid-column: 1 / span 2;
    justify-self: center;
}

.event {
    text-align: left;
    max-width: 1024px;
    margin: 60px auto 0px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 30px;


}

@media (max-width: 768px) {
    .events { 
        padding: 20px;
    }
}

/* Contact Section */

.contact-section {
    /* background-image: url('../img/craft_paper.jpg');
    background-size: 20%; */
    margin: 0;
    padding: 60px 8%;
    text-align: center;
}

.contact-section h2 {
    padding:30px 0px;

}

.contact-container {
    margin: 0 auto;
    background-color: var(--primary-light-clr);
    border-radius: 10px;
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    /* border: green 1px solid; */
    gap: 30px;
    max-width: 1220px;
}

@media (max-width: 500px) {

    .contact-section{
        padding-inline:30px;
    }
    .contact-container{
        padding-inline:30px;
    }
}

.contact-text {

    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1 1 350px;
    /* border: blue 1px solid; */
    
}

.contact-text h3 {
    margin: 0;
    /* border: red 1px solid; */
}

.contact-container p {
    color: #ffffff;
    /* border: pink 1px solid; */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 450px;
    /* border: blueviolet 1px solid; */

}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between name and email inputs */
}

.form-row input {
    font-family: "EB Garamond", serif;
    font-size: 1.4rem;
    flex: 1 1 200px; /* Makes both inputs take equal space */
    height: 40px; /* Adjusts the height of the inputs */
    padding: 30px;
    box-sizing: border-box;
    border: 0px;
    border-radius: 5px; /* Rounds the corners of the inputs */
    width: 50%;
}

input::placeholder {
    color: rgb(185, 185, 185); /* Change this to any color you prefer */
    opacity: 1; /* Ensures full opacity for the color */
}

.contact-form textarea {
    font-family: "EB Garamond", serif;
    font-size: 1.4rem;
    padding: 20px;
    border: 0px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

textarea::placeholder {
    color: rgb(185, 185, 185); /* Change this to any color you prefer */
    opacity: 1; /* Ensures full opacity for the color */
}


.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color:var(--title-clr);
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #57483c;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }

    .contact-text {
        flex: 1 1;
    }

    .contact-form {

        flex-direction: column;
        flex: 1 1;
    }
}

footer {
    background-image: url('../img/felt_texture_006.jpg');
    padding: 60px;
    color: #fff;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    gap: 30px;
    /* border: #87c2d4 1px solid; */
}

.footer-column-1 {

    flex: 2 1 450px;
    /* margin: 20px; */
    /* max-width: 450px; */
    /* border: #87c2d4 1px solid; */
}

.footer-column-2 {
    flex: 1 2 150px;
    /* margin: 20px; */
    /* max-width: 100px; */
    /* border: #87c2d4 1px solid; */
}

.footer-column-3 {
    flex: 1 2 150px;
    /* margin: 20px; */
    /* max-width: 100px; */
    /* border: #87c2d4 1px solid; */
}

.footer-column-1 h2,
.footer-column-1 h3,
.footer-column-2 h2,
.footer-column-2 h3,
.footer-column-3 h2,
.footer-column-3 h3 {
    margin-top: 0;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 1.4rem; 
    font-weight: 700;
    letter-spacing: 4px;

}

.footer-column-1 ul, .footer-column-2 ul, .footer-column-3 ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 30px 0;
}

.footer-column-1 ul li a, .footer-column-2 ul li a, .footer-column-3 ul li a {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;

    

}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 5px 0;
    /* min-width: 400px; */
}



.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

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

/* Gallery Page */

.light-font {
    color: #eaf3fa;
}

.portfolio{

    padding: 30px 8%;
    background-color: var(--body-clr);
}

.event-page {

    padding: 30px 8%;
    background-color: var(--body-clr);
}

.section-head {
max-width: 700px;
margin: 0px auto 25px;
text-align: center;
}

.section-head h2 {
font-family: 'Merriweather', serif;
font-weight: 400;
font-size: 2em;
letter-spacing: 0.05em;
position: relative;
font-size: 32px;
margin: 10px 0px 30px;
padding: 60px 0;
color: var(--primary-light-clr);
}

.button-group {
text-align: center;
margin-bottom: 40px;
}

.button-group .gallery-button {
display: inline-block;
padding: 10px 20px;
margin: 5px;
background-color: #e6d7d4;
color: var(--primary-clr);
font-size: 12px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.4s;
border: none;
border-radius: 5px;
outline: none;
cursor: pointer;
}
.button-group .gallery-button.active{
background-color: var(--primary-clr);
color: var(--title-light-clr);
}
.button-group .gallery-button:hover{
background-color: var(--primary-clr);
color: var(--title-light-clr);
}
div.gallery-page{
width: 100%;
min-height: 80vh;
display: flex;
flex-wrap: wrap;
}
div.gallery-page .item{
position: relative;
margin: 4px;
width: calc(33.33% - 8px);
overflow: hidden;
cursor: pointer;
}
.item img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: 0.3s;
}
div.gallery-page .item:hover img{
transform: scale(1.15);
}
.item .overlay{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(5,85,92,0.7);
color: var(--body-clr);
padding: 15px;
overflow: hidden;
transition: opacity 0.2s ease-in-out;
opacity: 0;
}
.item:hover .overlay{
opacity: 1;
}
.item .overlay a{
display: inline-block;
padding: 8px 16px;
border: 2px solid var(--body-clr);
color: var(--body-clr);
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}
.item .overlay a:hover{
background-color: var(--body-clr);
color: var(--primary-clr);
}


@media(max-width: 1024px){
div.gallery-page .item{
    width: calc(50% - 8px);
}
}

@media(max-width: 600px){
div.gallery-page .item{
    width: 100%;
    margin: 4px 0px;
}
}

/* Event Page */

.event-page-event {
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    justify-content: center;
    margin: 20px 0;    

}

.event-image {

    object-fit: cover;
    margin-right: 0;
    max-width: 400px;
    max-height: 578px;

}

.event-details {
    flex: 1 1 400px;
    padding: 30px;
    max-width: 600px;
    min-width: 350px;
    color: #292929;

}

@media (max-width: 1040px) {
    .event-details {
      /* Styles for when the viewport width is 1040px or less */
      max-width: 400px;
      padding-inline: 0;
    }
}

.event-details h3 {
    margin-top: 0;
}

.event-details p {
    margin: 10px 0;
}

.contact-page {
    padding: 30px 8%;
}

.contact-page-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 20px auto;
    background-color:var(--primary-light-clr);
    max-width: 1072px;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .contact-page-section {
        flex-direction: column;
}
}

.contact-details {
    flex: 5;
    padding: 30px;
    box-sizing: border-box;

}

.contact-details h3 {
    margin-top: 0;
}

.contact-details p {
    color: var(--body-clr);
}

.contact-image-container {
    flex: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-width: 350px;
}

.contact-image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.italic {
    font-style: italic;
}

.instagram {
    padding: 30px 0;
}

.contact-box{
    padding: 30px 0;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
}


.grid-item {
    flex: 1 0 25%;
    max-width: 25%;

    

}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;


}

 @media (max-width: 768px) {
    .grid-item {
        flex: 1 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {

    .grid-item {
        flex: 1 0 100%;
        max-width: 100%;
    }
} 

.font-highlight {
    color: #cc9934;
}

.handle {
    font-family: "Lato", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    display: inline-block;
    padding:15px 30px;
    background-color: #fff;
    border-radius: 50px;
}

.dark-title {
    color: var(--title-clr);
}

.light-title {
    color: var(--title-light-clr);
}