@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Lato:wght@300;400;700&display=swap');

:root{
    --transition: all 300ms ease-in-out;
	--dark-color: #332e29;
    --light-color: #fff;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: 0;
}

html{
    font-size: 10px;
}

body{
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
	    background-color: #D3C7CB; /* Matches the light background color */

}

button, .btn{
    cursor: pointer;
    border: none;
    background: transparent;
}

ul{
    list-style-type: none;
}

a{
    text-decoration: none;
    color: var(--dark-color);
}

img{
    width: 100%;
    display: block;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vh-100{
    min-height: 100vh;
}

h1, h2, h3{
    margin-top: 0;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-family: 'Amatic SC', cursive;
}

h1{
    font-size: 4.5rem;
}

h2{
    font-size: 3.5rem;
}

h3{
    font-size: 3rem;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}

.py-7{
    padding: 7rem 0;
}

.grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.lead{
    opacity: 0.8;
    padding: 1rem 0;
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Header */
#header:not(.simple-header) {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


#header:not(.simple-header) {
    height: 100vh;
}
#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#header .container{
    width: 100%;
}

#header.simple-header {
    height: auto !important;
    min-height: 80px !important;
    padding: 1rem 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #332e29 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}


.header-content{
    padding-bottom: 4rem;
}

.header-content h1, .header-content h2, .header-content h3{
    color: var(--light-color);
    text-transform: uppercase;
}

.header-content h1{
    font-size: 4.5rem;
    margin-bottom: 0;
}

.header-content h2{
    font-weight: 300;
    letter-spacing: 8px;
    margin-top: 1.5rem;
}

.header-content h3{
    font-weight: 300;
    letter-spacing: 4px;
    margin-top: 1.5rem;
}

/* Continue the rest of your styling here */


.social-links {
    display: flex;
    margin-top: 3.5rem;
    list-style: none;
    padding: 0;
    align-items: center;
}

.social-links li {
    position: relative;
    margin-right: 1rem;
}

.social-links li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: .3rem;
    box-shadow: 0 0 6px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.social-links li a:hover,
.instagram-dropdown:hover .instagram-link {
    opacity: 0.9;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.instagram-dropdown:hover .dropdown-content {
    display: block;
}
/* Section Separator */
.section-separator {
    width: 100%;
    height: 20px; /* Adjust height as needed */
    background-color: #333; /* Dark grey color */
    margin: 0; /* Remove any extra margin */
    padding: 0; /* Remove any extra padding */
}

/* About */
/* Portfolio Section (Video Section) */
#portfolio {
    margin-bottom: 0; /* Ensure no extra space */
    padding-bottom: 0; /* Ensure no extra space */
}

/* About Section */
#about {
    margin-top: 0; /* Ensure no extra space */
    padding-top: 0; /* Ensure no extra space */
}

/* Alternatively, use negative margin to force the sections closer */
#about {
    margin-top: -20px; /* Adjust as needed */
	
}

/* Call-to-Action Section */
#call-to-action {
    background-color: #F7E9F2; /* Soft pink to match your palette */
    text-align: center;
    padding: 50px 20px;
    border-radius: 12px;
    margin-bottom: 50px; /* Adds space before the portfolio section */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#call-to-action h2 {
    font-size: 2.8rem;
    color: #332e29;
    font-family: 'Amatic SC', cursive; /* Matches title font style */
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#call-to-action p {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px; /* Limits the text width for readability */
    margin: 0 auto;
}

.cta-link {
    color: #4A90E2; /* Adds color contrast for link */
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #D6A2E8; /* Slightly different color on hover */
}

#about {
    margin-bottom: 0; /* Removes any bottom margin */
    padding-bottom: 0; /* Removes any bottom padding */
}

/* Call-to-action section */
#call-to-action {
    background-color: #F7E9F2;
    text-align: center;
    padding: 40px 20px; /* Adjust padding if necessary */
    margin-top: 0; /* Ensure no top margin */
    margin-bottom: 0; /* Remove any extra bottom margin */
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Portfolio section to remove top margin */
#portfolio {
    margin-top: 20px; /* Remove any top margin */
    padding-top: 0; /* Adjust padding if necessary */
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #C1B7BD;
    gap: 20px;
	padding: 80px;
    margin-top: 0; /* Adjust as needed */
    padding-top: 0; /* Adjust as needed */
}

@media (max-width: 768px) {
    .about-img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 10px;
        padding: 20px; /* Added padding */
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-right {
        padding: 0 15px;
    }
}



/* Button down and title - reusable */
.btn-down{
    font-size: 3rem;
    display: inline-block;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-down:hover{
    opacity: 0.8;
    transform: translateY(5px);
}

.btn-down-white{
    color: var(--light-color);
}

.title{
    margin-bottom: 5rem;
}

.title h2{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    position: relative;
}

.title h2::after{
    position: absolute;
    content: "";
    top: 120%;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--dark-color);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.95); /* Semi-transparent black */
    color: #fff;
    padding: 1.4rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


.close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 1001;
}

.close-menu:hover {
    color: #ff0000; /* Optional: Change color on hover */
}

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

.nav-menu-item {
    margin-left: 20px;
}

.nav-menu-link {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Hide toggle by default */
}

.hamburger {
    width: 30px;
    height: 3px;
    background: #fff;
    display: block;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    background: #fff;
    width: 30px;
    height: 3px;
    display: block;
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none; /* Hide by default */
        z-index: 999; /* Ensure the menu is above other content */
    }

    .nav-menu.active {
        display: flex; /* Show the menu when active */
    }

    .nav-menu-item {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .nav-toggle {
        display: block; /* Show toggle on mobile */
    }
}

/* Animation for the hamburger icon when menu is open */
.hamburger.active::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger.active {
    background: transparent;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #333;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu-item {
        margin: 20px 0;
    }
}

/* Work */
#work{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("file:///MercurialRealms/Users/averysmarmelandeconserve/Documents/Backup/work.jpg") center/
    cover no-repeat fixed;
    color: var(--light-color);
}

#work .title h2, #work h3{
    color: var(--light-color);
}

#work .title h2::after{
    background: var(--light-color);
}

.work-bottom{
    margin-top: 4rem;
    text-align: center;
}

.work-bottom > div .icon img{
    width: 50px;
    margin: 0 auto 1.7rem auto;
}

/* Portfolio */
.portfolio-content h3 {
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
}

/* Portfolio section with video and text */
.portfolio-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background-color: #f4f4f4;
    margin-bottom: 2rem;
}

.portfolio-section .portfolio-content {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.portfolio-section .portfolio-video {
    flex: 1;
    max-width: 560px;
}

.portfolio-section .portfolio-video iframe {
    width: 100%;
    height: auto;
}

.portfolio-section .portfolio-text {
    flex: 2;
    padding: 10px;
    text-align: justify;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox.show {
    display: block;
}

.lightbox-content {
    position: relative;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox img {
    width: auto;
    height: 90vh;
    max-width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

/* Specific styles for lightbox iframes (videos) */
.lightbox iframe {
    width: 100%;
    height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #bbb;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* Acknowledgment Lightbox content */
#acknowledgment-lightbox .lightbox-content {
    max-width: 600px;
    padding: 20px;
    background-color: #3B3737;
    border-radius: 10px;
    text-align: left;
    color: #FAFAFA;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    overflow-y: auto;
}

#acknowledgment-lightbox .lightbox-content h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #FFFFFF;
}

#acknowledgment-lightbox .lightbox-content p {
    margin-bottom: 15px;
}

#acknowledgment-lightbox .close {
    color: #333;
    font-size: 30px;
}

#acknowledgment-lightbox .close:hover {
    color: #777;
}

/* Contact */
#contact{
    background-color: rgb(248, 248, 248);
}

.contact-content{
    flex-direction: column;
    align-items: stretch;
}

.contact-left{
    margin-bottom: 5rem;
}

.contact-left .lead{
    padding: 0.5rem;
}

.contact-left form{
    margin-top: 3rem;
}

.contact-left form .form-control{
    display: block;
    margin: 1.6rem 0;
    border: 2px solid rgba(0, 0, 0, 0.3);
    padding: 1rem;
    width: 100%;
}

.contact-left form .form-control::placeholder{
    font-size: 15px;
    font-family: 'Gowun Dodum', sans-serif;
}

.contact-left .btn-submit{
    padding: 1.4rem 3rem;
    font-family: 'Gowun Dodum', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.6rem;
    transition: var(--transition);
}

.contact-left .btn-submit:hover{
    background-color: #000;
}

/* Portfolio Gallery Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tablinks {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.tablinks:hover, .tablinks.active {
    background-color: #bbb;
}

.tabcontent {
    display: none;
}

/* Masonry gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media only screen and (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.promo-image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
	  align-items: center;      /* Vertically center the images */

  gap: 20px; /* Space between the images */
}

.image-promo {
  flex-basis: calc(50% - 20px); /* Two images side by side on larger screens */
  max-width: 60%;
}

.image-promo img {
  width: 100%;          /* Images are responsive and take up full width */
  height: auto;         /* Maintain aspect ratio */
  object-fit: cover;     /* Make sure the image fits without distortion */
  border-radius: 5px;    /* Optional rounded corners */
  max-width: 600;      /* Maximum width for the image, ensuring it doesn't stretch too large */
}

/* For small screens */
@media (max-width: 768px) {
  .image-item {
    flex-basis: 100%; /* Full width on mobile screens */
  }
}

#promo {
  display: flex;
  justify-content: center; /* Center the section */
  align-items: center;     /* Vertically center content if needed */
  padding: 40px 0;         /* Padding to create space around the section */
  background-color: #1A2724;
  width: 100%;             /* Ensure the section fills the width of the screen */
}

.pricing-section {
    padding: 40px 20px;
    border-radius: 10px;
}

.title {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h2, h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #332e29;
}

h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #000;
}

p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.5;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

ul ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

.pricing-grid strong {
    font-size: 18px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


#insta{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(file:///MercurialRealms/Users/averysmarmelandeconserve/Documents/Backup/images/insta-pic.jpg) center/
    cover no-repeat fixed;
    min-height: 65vh;
}

#insta .title h2{
    color: var(--light-color);
}

#insta .title h2::after{
    background-color: var(--light-color);
}

.insta-grid > div{
    height: 400px;
    overflow: hidden;
    transition: var(--transition);
}

.insta-grid > div img{
    height: 100%;
    object-fit: cover;
}

.insta-grid > div:hover{
    transform: scale(0.9);
}

/* Footer */
#footer{
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer-content{
    text-align: center;
}

.footer-content h3{
    color: var(--light-color);
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.footer-content ul{
    flex-direction: column;
}

.footer-content ul li a{
    color: var(--light-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-content ul li a:hover{
    opacity: 0.7;
}

.footer-content ul li{
    margin: .5rem 1rem;
}

.footer-content > div:first-child{
    margin-bottom: 3rem;
}

.footer-content > div:first-child div{
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin: 5rem auto;
    border-radius: 50%;
}

/* Media Queries */
@media(min-width: 450px){
    .work-bottom{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        row-gap: 0;
    }
}

@media(min-width: 576px){
    .title h2{
        font-size: 4rem; 
    }

    .work-bottom{
        grid-template-columns: repeat(4, 1fr);
    }

    .portfolio-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid > div{
        height: 300px;
        overflow: hidden;
    }

    .portfolio-grid > div img{
        height: 100%;
        object-fit: cover;
    }

    .contact-left form .form-control{
        max-width: 500px;
    }

    .footer-content ul{
        flex-direction: row;
    }
}

@media(min-width: 768px){
    .header-content h1{
        font-size: 7rem;
    }

    .about-content, .work-top{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 6rem;
        row-gap: 0;
    }

    .about-left{
        margin-bottom: 0;
    }

    .contact-content{
        flex-direction: row;
    }

    .contact-right{
        padding-left: 3rem;
        width: 50%;
    }

    .contact-left{
        width: 50%;
    }

    .insta-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px){
    .insta-grid > div{
        height: 250px;
    }
}

@media(min-width: 1200px){
    .portfolio-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid > div:nth-child(2){
        grid-column: 2 / 4;
    }

    .portfolio-grid >div:nth-child(6){
        grid-column: 1 / 3;
    }
}
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body > .container {
    flex: 1 0 auto;
}

#footer {
    flex-shrink: 0;
}

