/*////////////////////// GLOBAL CODE ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.m-form-extra,
.form-extra {
  display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    background-color: #141414; /* or your preferred grayish color */
    color: #f0f0f0;            /* light text to match */
}

a {
  color: white;
    text-decoration: none;
}

h1 {
    font-family: "Amarante", serif;
    font-weight: 400;
    font-style: normal;
}

h2, h3, h4, h5, p, li, ul, button, .footer-text, .copy-text, .footer-head-desktop, .mnav-links, .card-back-text, .card-back-title, .card-back-subtitle {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.m-error-message, .error-message {
    display: block !important;
    color: #ff5555;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.g-recaptcha {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 10px;
}

/* Animations */
@keyframes popUp { /* Button only */
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#opening-btn {
  margin-top:20px;
  opacity: 0;
  animation: popUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: .6s;
}

/* animations........................................................................*/
#shopco-1,
#shopco-2,
#shopco-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}

#shopco-1.pop-up,
#shopco-2.pop-up,
#shopco-3.pop-up {
  animation-fill-mode: forwards;
  animation-name: popUpSlide;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}


@keyframes popUpSlide {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* colors ..........................................................................*/

#banner,
#btn-blurb1,
#btn-blurb2,
#reviews {
    background-color: #2A2A2A;
    color: whitesmoke;
}

#meet-the-team,
#portfolio-section,
#terms-contentblock,
#thankyou-1,
#thankyou-3 {
    background-color: #2A2A2A;
    color: #ffffff;
}

#about-adeviternal,
#shop,
#socials,
#about-me,
#faq,
#contact-form-desktop,
#thankyou-2 {
    background-color: #8d8ac3;
    color: #2A2A2A;
}

#welcome {
    background-color: rgb(142, 139, 196);
    color: #2A2A2A;
}

#ecostatement{
    background-color: #B7B4CC;
    color: #2A2A2A;
}

/*////////////////////// MOBILE CODE ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.wrapper {
    width: 100%;
}

.contentblock {
    width: 100%;
    height: auto;
    padding: 25px 35px;
    overflow: hidden;
    box-sizing: border-box;
}

/* ========================================================================= */
/* MOBILE - LAYOUT */
/* ========================================================================= */
#banner {
    height: 400px;
    text-align: center;
    background-image: url('images/ad-web-bg-2.jpg');
    overflow: hidden;
    padding: 80px 0 40px 0;
}

#banner-about {
    height: 350px;
    text-align: center;
    background-image: url('images/lavender.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    padding: 80px 0 40px 0;
}

#section-break,
#portfolio-section {
    padding: 0 20px;
    box-sizing: border-box;
}

.portfolio-section-break {
    background-color: #141414;
    color: white;
}

.portfolio-section {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-color: #2f2f3e;
}

#meet-the-team {
    text-align: center;
}

#terms-contentblock {
    padding-top: 90px;
}

#thankyou-1 {
    padding-top: 60px;
}

/* ========================================================================= */
/*  MOBILE - GRID AND GALLERY LAYOUT */
/* ========================================================================= */
.two-co {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.two-co1, .two-co2 {
    padding: 1rem;
}

.two-co-unequal {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    margin: 10px 0;
    padding: 0;
}

.two-co-unequal1,
.two-co-unequal2 {
    width: 100%;
    flex: none;
}

.four-co {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3vw;
    row-gap: 8vw;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
}

.four-co1,
.four-co2,
.four-co3,
.four-co4 {
    text-align: center;
}

.four-co-social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1vw;
    row-gap: 8vw;
    max-width: 300px;
    margin: 0 auto;
    padding-top: 20px;
}

.four-co1-social,
.four-co2-social,
.four-co3-social,
.four-co4-social {
    width: 100%;
    height: auto;
    text-align: center;
}

.grid-8col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
    margin-top: 20px;
}

.three-co-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    padding-top: 80px;
    width: 100%;
    box-sizing: border-box;
}

.three-co1-gallery,
.three-co2-gallery,
.three-co3-gallery {
    flex: 1 1 calc(50% - 12.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mobile-gallery {
    display: block;
}

#desktop-gallery {
    display: none;
}

/* ========================================================================= */
/* MOBILE - IMAGES */
/* ========================================================================= */
.portfolio-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.two-co-unequal1 img {
    width: 100%;
    height: auto;
    display: block;
}

.four-co img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.grid-8col img {
    width: 50px;
    height: auto;
}

.three-co-gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.about-img {
    width: 100%;
    height: auto;
}

.shop-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.unequal-img {
    width: 100%;
    height: 170px;
}

.stainedglass {
    height: auto;
    width: 100%;
}

.thankyou-logo {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
}

#btn-blrb-1-img-desktop {
    display: none;
}

#btn-blrb-1-img-mobile {
    display: block;
}

/* ========================================================================= */
/* MOBILE - TYPOGRAPHY */
/* ========================================================================= */
h1 {
    padding-top: 55px;
    font-size: 45px;
}

h2 {
    font-size: 20px;
    padding: 15px 0 15px 0;
    letter-spacing: 2px;
}

h3 {
    font-size: 18px;
    text-align: center;
    padding: 15px 0 15px 0;
}

p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    padding-bottom: 15px;
}

.p-story {
    text-align: left;
}

ul {
    padding-left: 25px;
    padding-bottom: 20px;
}

li {
    font-size: 16px;
    padding-bottom: 13px;
    font-weight: 500;
}

.section-head {
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    letter-spacing: 7px;
    text-align: center;
}

.centered {
    text-align: center;
}

.thankyou-title {
    text-align: center;
    font-size: 35px;
    margin-top: 0px;
    padding-top: 10px;
}

#terms {
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}

.terms-text {
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

.terms-bold {
    font-weight: 600;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

.terms-bullets {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 14px;
    line-height: 25px;
    padding-left: 20px;
    margin: 0;
    list-style-type: disc;
    color: white;
}

/* ========================================================================= */
/* MOBILE - FOOTER */
/* ========================================================================= */
footer {
    background-color: #2A2A2A;
    color: white;
    width: 100%;
    padding-bottom: 20px;
    padding-left: 10%;
    padding-right: 10%;
}

.footer-co {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-top: 0px;
    padding: 40px 0px;
    width: 100%;
    height: auto;
    gap: 30px;
}

.footer-co1,
.footer-co2,
.footer-co3,
.footer-co4,
.footer-co5 {
    width: 100%;
    height: auto;
    background-color: #2A2A2A;
    text-align: left;
}

.footer-co1 {
    display: none;
}

.footer-head-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    cursor: pointer;
}

.footer-head-mobile.active {
    color: #8d8ac3;
}

.footer-head-mobile .arrow {
    font-size: 40px;
    transition: transform 0.3s ease;
}

.footer-head-mobile.active .arrow {
    transform: rotate(180deg);
}

.footer-links {
    display: none;
    padding-left: 10px;
}

.footer-head-mobile.active + .footer-links {
    display: block;
}

.footer-head-desktop {
    font-size: 17px;
    padding: 10px 0px 0px 0px;
    color: white;
    margin: 0px;
    display: none;
}

.footer-text {
    font-size: 18px;
    color: white;
    font-weight: 400;
    line-height: 4;
}

.copy-text {
    height: auto;
    font-size: 15px;
    color: white;
    font-weight: 400;
    text-align: center;
    line-height: 2;
    padding-top: 10px;
}

.f2-co2 {
    padding-top: 40px;
    padding-bottom: 20px;
}

.f2-co2 img {
    height: auto;
    margin-right: 10px;
    width: 50px;
}

footer a,
footer a:visited,
footer a:active {
    color: white;
}

.mfooter-break {
    display: block;
}

.divider-desktop {
    display: none;
}

/* ========================================================================= */
/* MOBILE - NAVIGATION */
/* ========================================================================= */
#desktop-nav,
#top-dock {
    display: none;
}

.mobile-header {
    background-color: #2c2c2c;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

#menu-toggle.hamburger {
    all: unset;
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -40%;
    height: 100%;
    width: 40%;
    background-color: #2c2c2c;
    color: white;
    z-index: 999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar.open {
    left: 0;
}

.sidebar.open ~ .mobile-header {
    display: none;
}

.sidebar-content a {
    color: white;
    text-decoration: none;
    margin: 10px 0;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}

.mnav-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.mnav-logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.mnav-links {
    font-size: 2fr;
    line-height: 60px;
}

.mnav-socials {
    display: none;
}

.mnav-socials img {
    margin-top: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    align-self: flex-end;
    cursor: pointer;
    padding-top: 50px;
    max-width: 100%;
    margin-left: auto;
}

/* ========================================================================= */
/* MOBILE - BUTTONS */
/* ========================================================================= */
button {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    width: 220px;
    height: 60px;
    margin-top: 0px;
    background-color: #8d8ac3;
    color: #2A2A2A;
    border: 4px solid black;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#learnmore-btn {
    display: block;
    margin: 0 auto;
    margin-top: 0px;
}

/* ========================================================================= */
/* MOBILE - CAROUSEL */
/* ========================================================================= */
#carouselblock {
    background-image: url('images/ad-web-bg-3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.poster-carousel {
    background-attachment: fixed;
    margin-top: 0px;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    color: #ffffff;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.scene {
    width: 100%;
    height: auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel {
    width: 100%;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(-400px);
    transition: transform 1s;
}

.card {
    width: 200px;
    height: 300px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateZ(400px);
    perspective: 1000px;
    transition: transform 1s;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    box-shadow: 0 0 15px #4d3478, 0 0 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.card-front {
    padding: 0;
    background: none;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-back {
    transform: rotateY(180deg);
    background-image: radial-gradient(circle, #0a061d, #000);
    padding-left: 30px;
    padding-right: 30px;
}

.card-back-title {
    padding-top: 10px;
    font-size: 17px;
}

.card-back-subtitle {
    font-size: 13px;
}

.card-back-text {
    font-size: 11px;
}

.card:hover:not(.flipped) .card-inner {
    transform: scale(1.05);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.card-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.controls {
    margin-top: -120px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.prev-btn,
.next-btn {
    font-weight: 700;
    width: 250px;
    height: 70px;
    background-color: #8d8ac3;
    color: #2A2A2A;
    border: 4px solid black;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: #8d8ac3;
    color: white;
    border-color: white;
}

#card-0 .card-image {
    background-image: url(images/ad-card-1.jpg);
}

#card-1 .card-image {
    background-image: url(images/ad-card-2.jpg);
}

#card-2 .card-image {
    background-image: url(images/ad-card-3.jpg);
}

#card-3 .card-image {
    background-image: url(images/ad-card-4.jpg);
}

#card-4 .card-image {
    background-image: url(images/ad-card-5.jpg);
}

#featured {
    padding-top: 35px;
    color: white;
    box-shadow: #2A2A2A;
}

/* ========================================================================= */
/* MOBILE - SLIDESHOW */
/* ========================================================================= */
.contentblock-presentation {
    height: auto;
    width: 100%;
    padding: 100px 20px;
}

.aeviternal-slideshow .slideshow-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2550 / 1650;
    background: black;
}

.aeviternal-slideshow .slideshow {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.aeviternal-slideshow .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    user-select: none;
}

.aeviternal-slideshow .slideshow-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    height: auto;
    margin-top: 30px;
    flex-wrap: wrap;
}

.aeviternal-slideshow .slideshow-controls button {
    font-weight: 700;
    width: 100%;
    max-width: 280px;
    height: 60px;
    background-color: #8d8ac3;
    color: #2A2A2A;
    border: 4px solid black;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.3rem 0;
}

.aeviternal-slideshow .slideshow-controls button:hover {
    background-color: #8d8ac3;
    color: white;
    border-color: white;
}

.aeviternal-slideshow.fullscreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    margin: 0;
    padding: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.aeviternal-slideshow.fullscreen .slideshow-container {
    aspect-ratio: 2550 / 1650;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: auto;
    background: black;
}

.aeviternal-slideshow.fullscreen .slideshow {
    height: 100%;
    width: 100%;
}

.aeviternal-slideshow.fullscreen .slide {
    background-size: contain;
    background-color: black;
}

.aeviternal-slideshow.fullscreen .slideshow-controls {
    display: none;
}

/* ========================================================================= */
/* MOBILE - CONTACT FORM */
/* ========================================================================= */
#contact-form-mobile {
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    display: block;
    background-color: #141414;
    background: url('images/ad-form-texture.jpg') no-repeat center center;
    background-repeat: repeat;
    background-size: auto;
}

#contact-form-mobile * {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

#m-contact-form-container {
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    padding-top: .5rem;
    background-size: cover;
    border-radius: 15px;
    position: relative;
}

#m-contact-form-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.m-contact-slide {
    width: 100%;
    flex-shrink: 0;
    padding: 1rem;
    box-sizing: border-box;
    display: none;
}

.m-contact-slide.active {
    display: block;
    animation: slideIn 0.4s ease;
}

.m-form-header {
    margin-bottom: 1.5rem;
}

.m-header-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.m-logo-container {
    width: 30%;
    height: auto;
}

.m-logo {
    width: 100px;
    height: auto;
}

.m-title-container {
    width: 70%;
}

.m-form-title {
    margin-top: 20px;
    padding: 0;
    font-size: 25px;
    margin: 0;
}

.m-form-subtitle {
    margin: 0px;
    padding: 0;
    padding-top: 5px;
    font-size: 18px;
    text-align: left;
    color: #ccc;
}

.m-form-group {
    margin-bottom: 1.25rem;
}

.m-form-group label,
.m-form-group p {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.m-form-group input,
.m-form-group select,
.m-form-group textarea {
    width: 100%;
    max-width: calc(100% - 2rem);
    padding: 0.9rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: #272727;
    color: #f0f0f0;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.m-form-group input::placeholder,
.m-form-group textarea::placeholder {
    color: #888;
}

.m-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

#m-message {
    width: 100%;
    min-height: 250px;
    max-height: 300px;
    resize: none;
    box-sizing: border-box;
    overflow-y: auto;
}

.m-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.m-checkbox-grid label {
    background: #1f1f1f;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    flex: 1 1 45%;
    text-align: center;
}

.m-checkbox-grid input {
    margin-right: 0.5rem;
}

.m-checkbox-grid input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: #8d8ac3;
}

.m-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.m-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    width: 150px;
    height: 50px;
    background-color: #8d8ac3;
    color: #2A2A2A;
    border: 4px solid black;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.m-btn:hover {
    background-color: #8d8ac3;
    color: white;
    border-color: white;
}

.m-progress {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 0.5rem;
    padding-bottom: 1rem;
}

.m-progress-dot {
    width: 12px;
    height: 12px;
    background-color: #444;
    border-radius: 50%;
    transition: background 0.3s;
}

.m-progress-dot.active {
    background-color: #ffffff;
}

.m-thank-you {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn 0.4s ease;
}

.m-thank-you h2 {
    font-size: 1.5rem;
    color: #ad7ae7;
}

.commission-status {
    padding: 1rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    background-color: #8d8ac3;
    min-width: 90px;
    max-width: 180px;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    overflow: visible;
}

.commission-status hr {
    border: none;
    border-top: 1px solid white;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    background-color: white;
    overflow: visible;
}

/* ========================================================================= */
/* MOBILE - MAILING LIST */
/* ========================================================================= */
.mailing-list-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mailing-list-text {
    padding-top: 10px;
    padding-bottom: 30px;
    font-size: 21px;
    text-align: left;
    color: white;
    margin: 0;
    padding-left: 0px;
}

.mailing-list-form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}

.mailing-list-form input {
    width: calc(80% - 0.5rem);
    padding: 1rem;
    font-size: 1.2rem;
    border: 2px solid white;
    border-radius: 1rem;
    background: transparent;
    color: white;
    outline: none;
    box-sizing: border-box;
}

.mailing-list-button {
    width: calc(20% - 0.5rem);
    padding: 1rem;
    font-size: 1.2rem;
    border: 2px solid white;
    border-radius: 1rem;
    cursor: pointer;
    background: transparent;
    color: white;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mailing-list-form input::placeholder {
    color: #ccc;
}

/* ========================================================================= */
/* MOBILE - FAQ */
/* ========================================================================= */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #2A2A2A;
}

.faq-question {
    background: none;
    border: none;
    color: #2A2A2A;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    cursor: pointer;
    line-height: 25px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 14px 0;
    transition: color 0.3s;
    padding-bottom: 60px;
}

.faq-question.active {
    color: #ffffff;
}

.faq-question .arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    color: #2A2A2A;
    padding-left: 10px;
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.faq-text {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
}

/* ========================================================================= */
/* MOBILE - ANIMATIONS */
/* ========================================================================= */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(25%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================================= */
/* MOBILE - UTILITIES AND MISCELLANEOUS */
/* ========================================================================= */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.error-message {
    color: #ff5555;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

#contact-form-desktop {
    display: none;
}

/*////////////////////// TABLET CODE ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 600px) {
    .four-co-social {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 30px;
        padding: 20px 0;
        text-align: center;
    }

    .four-co1-social,
    .four-co2-social,
    .four-co3-social,
    .four-co4-social {
        flex: 0 0 100px;
    }

    .four-co-social img {
        width: 100%;
        height: auto;
        max-width: 100px;
    }

    .unequal-img {
        width: 100%;
        height: 250px;
    }

    .shop-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .contentblock-presentation {
        padding: 80px 120px;
    }

    .aeviternal-slideshow .slideshow-controls {
        gap: 1rem;
        margin-top: 50px;
        flex-wrap: nowrap;
    }

    .aeviternal-slideshow .slideshow-controls button {
        max-width: 320px;
        height: 65px;
        font-size: 17px;
        margin: 0;
    }

    .two-co {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .two-co1, .two-co2 {
        padding: 1rem;
    }
}

/*////////////////////// DESKTOP - 900 - 1280px SMALL AND HALFSCREEN///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 900px) {

    .wrapper {
        width: 100%;
    }

    .contentblock {
        height: auto;
        width: 100%;
        padding: 3.75rem 10rem 3.75rem 10rem;
    }

    .portfolio-section-break {
        text-align: center;
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .portfolio-section {
        width: 100%;
        max-width: 1920px;
        height: auto;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
        background-color: #2f2f3e;
    }

    .portfolio-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    #section-break {
        padding: 0px 200px 0px 200px;
    }

    #portfolio-section {
        padding: 0px 200px 0px 200px;
    }

    #banner {
        height: 620px;
        text-align: center;
        background-image: url('images/ad-web-bg-2.jpg');
    }

        .two-co {
        display: grid;
        grid-template-columns: 1fr; 
        }

        .two-co1,
        .two-co2 {
        padding: 0; 
        margin-bottom: 20px; 
        }


        .two-co-unequal {
        display: flex;
        flex-direction: column; 
        }

        .two-co-unequal1,
        .two-co-unequal2,
        .two-co-unequal1-eco,
        .two-co-unequal2-eco {
        flex: 0 0 100%; 
        margin-bottom: 20px; 
        }


        .two-co-unequal1 img,
        .two-co-unequal1-eco img {
        width: 100%;
        height: 350px;    
        object-fit: cover; 
        display: block;
        }


    .three-co {
        display: flex;
        justify-content: center;
        gap: 200px;
        padding-top: 50px;
    }

    .three-co1,
    .three-co2,
    .three-co3 {
        width: 300px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .three-co-thankyou{
        display: flex;
        justify-content: center;
        gap: 200px;
        padding-top: 50px;
    }

    .three-co1-thankyou,
    .three-co2-thankyou,
    .three-co3-thankyou {
        width: 300px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .three-co-gallery {
        flex-wrap: nowrap;
    }

    .three-co1-gallery,
    .three-co2-gallery,
    .three-co3-gallery {
        flex: 1 1 33.33%;
    }

    #mobile-gallery {
        display: none;
    }

    #desktop-gallery {
        display: block;
    }

    .four-co {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .four-co1,
    .four-co2,
    .four-co3,
    .four-co4 {
        width: 300px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .meetheteam-img {
        width: 100%;
        height: 300px;
    }

    .four-co-social {
        display: block;
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        padding-top: 40px;
    }

    .four-co1-social,
    .four-co2-social,
    .four-co3-social,
    .four-co4-social {
        display: inline-block;
        width: 100px;
        margin: 0 60px;
        vertical-align: middle;
        text-align: center;
    }

    .four-co1-social img,
    .four-co2-social img,
    .four-co3-social img,
    .four-co4-social img {
        width: 100px;
        height: auto;
    }

    .grid-8col {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 0px;
    }

    .grid-8col img {
        height: auto;
        width: 60px;
        filter: grayscale(100%) brightness(0) invert(13%);
    }

    .portobello-instagram {
        margin-top: 5px;
        display: block;
        margin-left: 0;
        margin-right: auto;
    }

    .portobello-instagram:hover {
        filter: brightness(0) saturate(100%) invert(81%) sepia(10%) saturate(750%) hue-rotate(214deg) brightness(92%) contrast(90%);
        cursor: pointer;
    }

    h1 {
        font-size: 75px;
        padding-top: 90px;
        letter-spacing: 6px;
    }

    h2 {
        font-size: 37px;
        letter-spacing: 5px;
    }

    #home-subtitle{
        font-size: 30px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 25px;
        letter-spacing: 2.5px;
        line-height: 1.5;
        padding: 15px 0 15px 0;
        text-align: left;
    }

    h4 {
        font-size: 20px;
    }

    p {
        font-size: 18px;
        line-height: 35px;
        font-weight: 500;
        text-align: left;
    }

    ul {
        padding-left: 25px;
        padding-bottom: 20px;
    }

    li {
        font-size: 18px;
        padding-bottom: 13px;
        font-weight: 500;
          margin-bottom: 15px;
    }

    .banner-title {
        font-size: 75px;
        color: white;
        text-align: center;
        padding-top: 70px;
    }

    .bold {
        font-weight: 600;
    }

    .terms-text {
        font-size: 14px;
        line-height: 25px;
    }

    .section-head {
        font-size: 55px;
        font-family: Georgia, 'Times New Roman', Times, serif;
        letter-spacing: 7px;
    }

    .terms-bullets {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 14px;
        line-height: 25px;
        padding-left: 20px;
        margin: 0;
        list-style-type: disc;
        color: #ffffff;
    }

    #terms {
        font-size: 23px;
        line-height: 1.3;
        padding-bottom: 50px;
        text-align: center;
    }

    .footer-head {
        font-size: 20px;
        padding: 10px 0px 0px 0px;
        color: white;
        margin: 0px;
    }

    .footer-text {
        font-size: 14px;
        color: white;
        font-weight: 400;
        line-height: 2;
    }

    .copy-text {
        font-size: 14px;
        color: white;
        font-weight: 400;
        line-height: 2;
        padding-top: 30px;
    }

    .socialmedia {
        transition: transform 0.3s ease, filter 0.3s ease;
        border-radius: 8px;
    }

    .socialmedia:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
        cursor: pointer;
    }

    button {
        font-weight: 700;
        width: 350px;
        height: 70px;
        margin-top: 70px;
        background-color: #8d8ac3;
        color: #2A2A2A;
        border: 4px solid black;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    button:hover {
        background-color: #8d8ac3;
        color: white;
        border-color: white;
    }

    #learnmore-btn {
        margin-top: 40px;
        margin-left: 0;
        margin-right: auto;
    }

    .shop-img {
        transition: transform 0.3s ease, filter 0.3s ease;
        width: auto;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .shop-img:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
        cursor: pointer;
    }

    #desktop-nav {
        display: block;
        position: fixed;
        top: 1.25rem;
        right: 1.25rem;
        z-index: 1000;
    }

    #desktop-nav ul {
        list-style: none;
        display: flex;
        gap: 0.9375rem;
        font-family: 'Lato', sans-serif;
        font-size: 20px;
        margin: 0;
        padding: 0;
    }

    #desktop-nav ul li a {
        text-decoration: none;
        font-family: 'Lato', sans-serif;
        color: #ffffff;
        font-weight: bold;
        font-size: 20px;
        transition: color 0.3s ease;
    }

    #desktop-nav ul li a.active {
        color: #766caa;
        font-family: 'Lato', sans-serif;
    }

    #desktop-nav ul li a:hover {
        opacity: 0.7;
    }

    #nav-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4rem;
        background-color: transparent;
        z-index: 998;
        box-shadow: none;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #eadbc8;
        z-index: 999;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease-in-out, background-color 0.3s ease;
    }

    .mobile-header {
        display: none;
    }

    #nav-background.visible {
        background-color: #2A2A2A;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .footer-links {
        display: block !important;
        padding-left: 0;
    }

    .footer-head-mobile {
        cursor: default;
    }

    .footer-head-mobile .arrow {
        display: none;
        transform: none !important;
    }

    .footer-head-mobile {
        display: none;
    }

    .footer-co1 {
        display: block;
    }

    .footer-head-desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: white;
        font-size: 18px;
        padding: 14px 0;
    }

    footer {
        background-color: #2A2A2A;
        color: white;
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .footer-co {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        gap: 80px;
    }

    .footer-co1,
    .footer-co2,
    .footer-co3,
    .footer-co4,
    .footer-co5 {
        width: 100%;
        height: auto;
        background-color: #2A2A2A;
        text-align: left;
    }

    .footerco-2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        gap: 80px;
    }

    .f2-co1 {
        width: 40%;
        height: auto;
        text-align: left;
    }

    .f2-co2 {
        gap: 10px;
        padding: 0px;
        margin: 0;
    }

    footer a,
    footer a:visited,
    footer a:active {
        color: white;
    }

    footer a:hover {
        color: #8d8ac3;
    }

    .f2-co2 img {
        transition: filter;
        height: auto;
        margin-right: 10px;
        width: 40px;
    }

    .f2-co2 img:hover {
        filter: brightness(0) saturate(100%) invert(81%) sepia(10%) saturate(750%) hue-rotate(214deg) brightness(92%) contrast(90%);
        cursor: pointer;
    }

    .mfooter-break {
        display: none;
    }

    .divider-desktop {
        display: block;
    }

    .mailing-list-container {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .mailing-list-text {
        font-size: 19px;
        padding-top: 25px;
        padding-bottom: 15px;
        padding-left: 10px;
    }

    .mailing-list-form {
        display: flex;
        align-items: center;
        flex-direction: row;
        border: 2px solid white;
        border-radius: 2rem;
        overflow: hidden;
        width: auto;
    }

    .mailing-list-form input {
        flex: 1;
        width: auto;
        min-width: 0;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 0;
        background: transparent;
        color: white;
        font-size: 1.2rem;
        outline: none;
    }

    .mailing-list-form input::placeholder {
        color: #ccc;
    }

    .mailing-list-button {
        all: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        font-size: 1.2rem;
        cursor: pointer;
        border-left: 2px solid white;
        background: transparent;
        color: white;
    }

    #terms {
        padding-top: 100px;
    }

    .unequal-img {
        width: 350px;
        height: 450px;
    }

    .poster-carousel {
        margin-top: -200px;
        min-height: 900px;
    }

    .carousel {
        width: 100%;
        height: 400px;
    }

    .card {
        width: 366.5px;
        height: 550px;
    }

    .card-back {
        padding-top: 60px;
    }

    .card-back-title {
        font-size: 27px;
        margin-bottom: 5px;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
    }

    .card-back-subtitle {
        text-align: center;
        font-size: 23px;
        line-height: 2;
        margin-bottom: 10px;
        width: 100%;
    }

    .card-back-text {
        font-size: 16px;
        line-height: 2;
        width: 100%;
    }

    .controls {
        margin-top: -120px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .prev-btn,
    .next-btn {
        font-weight: 700;
        width: 250px;
        height: 70px;
        font-size: 18px;
    }

    #featured {
        padding-top: 35px;
    }

    .contentblock-presentation {
        padding: 100px 440px;
    }

    .aeviternal-slideshow .slideshow-controls {
        gap: 1rem;
        height: 50px;
        margin-top: 70px;
    }

    .aeviternal-slideshow .slideshow-controls button {
        width: 350px;
        height: 70px;
        font-size: 18px;
    }

    .faq-item {
        margin-bottom: 30px;
        border-bottom: 1px solid #2A2A2A;
    }

    .faq-question {
        background: none;
        border: none;
        color: #2A2A2A;
        font-family: "Montserrat", sans-serif;
        font-size: 25px;
        cursor: pointer;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        transition: color 0.3s;
    }

    .faq-question.active {
        color: #ffffff;
    }

    .faq-question .arrow {
        font-size: 30px;
        transition: transform 0.3s ease;
    }

    .faq-question.active .arrow {
        transform: rotate(180deg);
    }

    .faq-answer {
        display: none;
        color: #2A2A2A;
        padding-left: 10px;
        padding-bottom: 15px;
        font-size: 18px;
        line-height: 1.6;
    }

    .faq-text {
        font-size: 18px;
        font-weight: 500;
    }

    #btn-blrb-1-img-desktop {
        display: none;
    }

    #btn-blrb-1-img-mobile {
        display: block;
    }

    /* ========== Form Container Layout ========== */
    .contact-form-container {
        display: flex;
        width: 1200px;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 30px;
        gap: 30px;
        height: auto;
    }

    .contact-left-column {
        flex: 7;
        display: flex;
    }

    .contact-right-column {
        flex: 3;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* ========== Form Box & Typography ========== */
    .contact-form-box {
        width: 100%;
        background: url('images/ad-form-texture.jpg') no-repeat center center; /* Update with actual texture image path */
        background-color: #323232;
        background-size: cover;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        color: #ffffff;
    }

    .form-title {
        padding: 30px 0 0 30px;
        font-size: 45px;
        letter-spacing: 5px;
    }

    .form-subtitle {
        padding: 0 0 0 30px;
        font-size: 33px;
        letter-spacing: 5px;
    }

    .form-text {
        font-size: 12px;
        margin: 0;
        padding: 0;
    }

    #form-thankyou{
        font-size: 35px;
        letter-spacing: 5px;
        padding-top: 30px;
    }

    /* ========== Form Structure ========== */
    .contact-2col-5050 {
        padding-top: 30px;
        display: flex;
        width: 100%;
        gap: 30px;
    }

    .contact-2col-5050-1,
    .contact-2col-5050-2 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* ========== Input / Textarea Styles ========== */
    .contact-form-input {
        width: 100%;
        padding: 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: rgb(255, 255, 255);
        color: #000000;
        font-size: 14px;
        box-sizing: border-box;
        resize: none;
    }

    .contact-form-input-large {
        width: 100%;
        padding: 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: rgb(255, 255, 255);
        color: #000000;
        font-size: 14px;
        box-sizing: border-box;
        resize: none;
        height: 400px;
    }

    /* ========== Title Row (Logo + Headings) ========== */
    .contact-2col-title {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 150px;
        width: 100%;
    }

    .contact-2col-title1 {
        flex: 0 0 20%;
    }

    .contact-2col-title1 img {
        margin-top: -30px;
        height: 200px;
        width: auto;
    }

    .contact-2col-title2 {
        flex: 0 0 80%;
    }

    /* ========== CTA Side Column ========== */
    .contact-cta-box {
        width: 100%;
        border-radius: 15px;
        background-color: rgba(0, 0, 0, 0.9); /* 0.7 = 70% opacity */      
        padding: 20px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
        color: #ffffff;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .contact-cta-top {
        height: 15%;
    }

    .contact-cta-mid,
    .contact-cta-bottom {
        height: 42.5%;
    }

    .contact-cta-box h4 {
        font-size: 20px;
        letter-spacing: 2px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

      .contact-cta-mid img{
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 5px;
        margin-top: 10px;
    }

    .contact-cta-bottom img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 5px;
        margin-top: 10px;
    }

    /* ========== CTA Form & Button ========== */
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: rgb(255, 255, 255);
        color: #000000;
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        height: 40px;
        background-color: #8d8ac3;
        color: #2A2A2A;
        border: 4px solid black;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background-color: #8d8ac3;
        color: white;
        border-color: white;
    }

    .select-wrapper {
        position: relative;
        width: 100%;
    }

    .contact-form-select {
        width: 100%;
        padding: 10px 40px 10px 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: #000;
        color: #fff;
        font-size: 14px;
        box-sizing: border-box;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        overflow: visible;
    }

    /* ========== Utility Text Styles ========== */
    .commission-break {
        margin-top: 10px;
        border: 2px solid #8d8ac3;
    }

    .commission-status-open {
        font-size: 30px;
        letter-spacing: 10px;
        color: #8d8ac3;
        font-weight: 600;
        margin-top: 15px;
    }

    h4.cta-title{
        font-size:20px;
        letter-spacing: 4px;
        margin: 15px 0 5px 0;
    }

    .cta-text {
        font-size: 12px;
        line-height: 2;
    }

    #newletter-body{
        margin-bottom: 10px;
    }

    #shop-aeviternal-cta-title{
        letter-spacing: 2px;
    }

    .checkbox-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkbox-grid label {
        display: flex;
        align-items: center;
        font-size: 14px;
        gap: 8px;
        color: #fff;
        font-family: "Montserrat", sans-serif;
    }

    .checkbox-grid input[type="checkbox"] {
        accent-color: #8d8ac3;
        width: 20px;
        height: 20px;
    }

    .form-thankyou {
        font-family: "Pacifico", cursive;
        font-weight: 400;
        font-style: normal;
    }

    #contact-form-desktop{
      display: block;
    }

    #contact-form-mobile{
      display: none;
    }

    .stainedglass{
        height: auto;
        width: 100%;
    }

    .thankyou-title{
        text-align: center;
        font-size:45px ;
        margin-top: 0px;
        padding-top: 10px;
    }

    .thankyou-logo{
        height: 450px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    #opening-btn {
    margin-top:0px;}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(189, 178, 255, 0.6);
  border-color: #beb1ff;
}
}

/*////////////////////// DESKTOP - 1280 - 1600px STANDARD ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 1280px) {
       .wrapper {
        width: 100%;
    }

    .contentblock {
        height: auto;
        width: 100%;
        padding: 3.75rem 18.75rem 3.75rem 18.75rem;
    }

    .portfolio-section-break {
        text-align: center;
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .portfolio-section {
        width: 100%;
        max-width: 1920px;
        height: auto;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
        background-color: #2f2f3e;
    }

    .portfolio-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    #section-break {
        padding: 0px 200px 0px 200px;
    }

    #portfolio-section {
        padding: 0px 200px 0px 200px;
    }

    #banner {
        height: 620px;
        text-align: center;
        background-image: url('images/ad-web-bg-2.jpg');
    }

    .two-co {
        display: grid;
        grid-template-columns: 60% 40%;
    }

    .two-co1 {
        padding-right: 40px;
    }

    .two-co2 {
        padding-left: 40px;
    }

    .two-co-unequal {
        flex-direction: row;
        justify-content: space-between;
    }

    .two-co-unequal1 {
        flex: 0 0 30%;
    }

    .two-co-unequal2 {
        flex: 0 0 70%;
    }

    .two-co-unequal1 img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .two-co-unequal1-eco {
        flex: 0 0 20%;
    }

    .two-co-unequal2-eco {
        flex: 0 0 80%;
    }

       .two-co-unequal1-eco img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .three-co {
        display: flex;
        justify-content: center;
        gap: 200px;
        padding-top: 50px;
    }

    .three-co1,
    .three-co2,
    .three-co3 {
        width: 300px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .three-co-thankyou{
        display: flex;
        justify-content: center;
        gap: 200px;
        padding-top: 50px;
    }

    .three-co1-thankyou,
    .three-co2-thankyou,
    .three-co3-thankyou {
        width: 300px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .three-co-gallery {
        flex-wrap: nowrap;
    }

    .three-co1-gallery,
    .three-co2-gallery,
    .three-co3-gallery {
        flex: 1 1 33.33%;
    }

    #mobile-gallery {
        display: none;
    }

    #desktop-gallery {
        display: block;
    }

    .four-co {
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    .four-co1,
    .four-co2,
    .four-co3,
    .four-co4 {
        width: 300px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .meetheteam-img {
        width: 100%;
        height: 300px;
    }

    .four-co-social {
        display: block;
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        padding-top: 40px;
    }

    .four-co1-social,
    .four-co2-social,
    .four-co3-social,
    .four-co4-social {
        display: inline-block;
        width: 100px;
        margin: 0 60px;
        vertical-align: middle;
        text-align: center;
    }

    .four-co1-social img,
    .four-co2-social img,
    .four-co3-social img,
    .four-co4-social img {
        width: 100px;
        height: auto;
    }

    .grid-8col {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 0px;
    }

    .grid-8col img {
        height: auto;
        width: 60px;
        filter: grayscale(100%) brightness(0) invert(13%);
    }

    .portobello-instagram {
        margin-top: 5px;
        display: block;
        margin-left: 0;
        margin-right: auto;
    }

    .portobello-instagram:hover {
        filter: brightness(0) saturate(100%) invert(81%) sepia(10%) saturate(750%) hue-rotate(214deg) brightness(92%) contrast(90%);
        cursor: pointer;
    }

    h1 {
        font-size: 80px;
        padding-top: 90px;
        letter-spacing: 6px;
    }

    h2 {
        font-size: 37px;
        letter-spacing: 5px;
    }

    #home-subtitle{
        font-size: 38px;
    }

    h3 {
        font-size: 25px;
        letter-spacing: 2.5px;
        line-height: 1.5;
        padding: 15px 0 15px 0;
        text-align: left;
    }

    h4 {
        font-size: 20px;
    }

    p {
        font-size: 18px;
        line-height: 35px;
        font-weight: 500;
        text-align: left;
    }

    ul {
        padding-left: 25px;
        padding-bottom: 20px;
    }

    li {
        font-size: 18px;
        padding-bottom: 13px;
        font-weight: 500;
          margin-bottom: 15px;
    }

    .banner-title {
        font-size: 75px;
        color: white;
        text-align: center;
        padding-top: 70px;
    }

    .bold {
        font-weight: 600;
    }

    .terms-text {
        font-size: 14px;
        line-height: 25px;
    }

    .section-head {
        font-size: 55px;
        font-family: Georgia, 'Times New Roman', Times, serif;
        letter-spacing: 7px;
    }

    .terms-bullets {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-size: 14px;
        line-height: 25px;
        padding-left: 20px;
        margin: 0;
        list-style-type: disc;
        color: #ffffff;
    }

    #terms {
        font-size: 23px;
        line-height: 1.3;
        padding-bottom: 50px;
        text-align: center;
    }

    .footer-head {
        font-size: 20px;
        padding: 10px 0px 0px 0px;
        color: white;
        margin: 0px;
    }

    .footer-text {
        font-size: 14px;
        color: white;
        font-weight: 400;
        line-height: 2;
    }

    .copy-text {
        font-size: 14px;
        color: white;
        font-weight: 400;
        line-height: 2;
        padding-top: 30px;
    }

    .socialmedia {
        transition: transform 0.3s ease, filter 0.3s ease;
        border-radius: 8px;
    }

    .socialmedia:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
        cursor: pointer;
    }

    button {
        font-weight: 700;
        width: 350px;
        height: 70px;
        margin-top: 70px;
        background-color: #8d8ac3;
        color: #2A2A2A;
        border: 4px solid black;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    button:hover {
        background-color: #8d8ac3;
        color: white;
        border-color: white;
    }

    #learnmore-btn {
        margin-top: 40px;
        margin-left: 0;
        margin-right: auto;
    }

    .shop-img {
        transition: transform 0.3s ease, filter 0.3s ease;
        width: auto;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .shop-img:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
        cursor: pointer;
    }

    #desktop-nav {
        display: block;
        position: fixed;
        top: 1.25rem;
        right: 1.25rem;
        z-index: 1000;
    }

    #desktop-nav ul {
        list-style: none;
        display: flex;
        gap: 0.9375rem;
        font-family: 'Lato', sans-serif;
        font-size: 20px;
        margin: 0;
        padding: 0;
    }

    #desktop-nav ul li a {
        text-decoration: none;
        font-family: 'Lato', sans-serif;
        color: #ffffff;
        font-weight: bold;
        font-size: 20px;
        transition: color 0.3s ease;
    }

    #desktop-nav ul li a.active {
        color: #766caa;
        font-family: 'Lato', sans-serif;
    }

    #desktop-nav ul li a:hover {
        opacity: 0.7;
    }

    #nav-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4rem;
        background-color: transparent;
        z-index: 998;
        box-shadow: none;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #eadbc8;
        z-index: 999;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease-in-out, background-color 0.3s ease;
    }

    .mobile-header {
        display: none;
    }

    #nav-background.visible {
        background-color: #2A2A2A;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .footer-links {
        display: block !important;
        padding-left: 0;
    }

    .footer-head-mobile {
        cursor: default;
    }

    .footer-head-mobile .arrow {
        display: none;
        transform: none !important;
    }

    .footer-head-mobile {
        display: none;
    }

    .footer-co1 {
        display: block;
    }

    .footer-head-desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: white;
        font-size: 18px;
        padding: 14px 0;
    }

    footer {
        background-color: #2A2A2A;
        color: white;
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .footer-co {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        gap: 80px;
    }

    .footer-co1,
    .footer-co2,
    .footer-co3,
    .footer-co4,
    .footer-co5 {
        width: 100%;
        height: auto;
        background-color: #2A2A2A;
        text-align: left;
    }

    .footerco-2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        gap: 80px;
    }

    .f2-co1 {
        width: 40%;
        height: auto;
        text-align: left;
    }

    .f2-co2 {
        gap: 10px;
        padding: 0px;
        margin: 0;
    }

    footer a,
    footer a:visited,
    footer a:active {
        color: white;
    }

    footer a:hover {
        color: #8d8ac3;
    }

    .f2-co2 img {
        transition: filter;
        height: auto;
        margin-right: 10px;
        width: 40px;
    }

    .f2-co2 img:hover {
        filter: brightness(0) saturate(100%) invert(81%) sepia(10%) saturate(750%) hue-rotate(214deg) brightness(92%) contrast(90%);
        cursor: pointer;
    }

    .mfooter-break {
        display: none;
    }

    .divider-desktop {
        display: block;
    }

    .mailing-list-container {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .mailing-list-text {
        font-size: 19px;
        padding-top: 25px;
        padding-bottom: 15px;
        padding-left: 10px;
    }

    .mailing-list-form {
        display: flex;
        align-items: center;
        flex-direction: row;
        border: 2px solid white;
        border-radius: 2rem;
        overflow: hidden;
        width: auto;
    }

    .mailing-list-form input {
        flex: 1;
        width: auto;
        min-width: 0;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 0;
        background: transparent;
        color: white;
        font-size: 1.2rem;
        outline: none;
    }

    .mailing-list-form input::placeholder {
        color: #ccc;
    }

    .mailing-list-button {
        all: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        font-size: 1.2rem;
        cursor: pointer;
        border-left: 2px solid white;
        background: transparent;
        color: white;
    }

    #terms {
        padding-top: 100px;
    }

    .unequal-img {
        width: 350px;
        height: 450px;
    }

    .poster-carousel {
        margin-top: -200px;
        min-height: 900px;
    }

    .carousel {
        width: 100%;
        height: 400px;
    }

    .card {
        width: 366.5px;
        height: 550px;
    }

    .card-back {
        padding-top: 60px;
    }

    .card-back-title {
        font-size: 27px;
        margin-bottom: 5px;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
    }

    .card-back-subtitle {
        text-align: center;
        font-size: 23px;
        line-height: 2;
        margin-bottom: 10px;
        width: 100%;
    }

    .card-back-text {
        font-size: 16px;
        line-height: 2;
        width: 100%;
    }

    .controls {
        margin-top: -120px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .prev-btn,
    .next-btn {
        font-weight: 700;
        width: 250px;
        height: 70px;
        font-size: 18px;
    }

    #featured {
        padding-top: 35px;
    }

    .contentblock-presentation {
        padding: 100px 440px;
    }

    .aeviternal-slideshow .slideshow-controls {
        gap: 1rem;
        height: 50px;
        margin-top: 70px;
    }

    .aeviternal-slideshow .slideshow-controls button {
        width: 350px;
        height: 70px;
        font-size: 18px;
    }

    .faq-item {
        margin-bottom: 30px;
        border-bottom: 1px solid #2A2A2A;
    }

    .faq-question {
        background: none;
        border: none;
        color: #2A2A2A;
        font-family: "Montserrat", sans-serif;
        font-size: 25px;
        cursor: pointer;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        transition: color 0.3s;
    }

    .faq-question.active {
        color: #ffffff;
    }

    .faq-question .arrow {
        font-size: 30px;
        transition: transform 0.3s ease;
    }

    .faq-question.active .arrow {
        transform: rotate(180deg);
    }

    .faq-answer {
        display: none;
        color: #2A2A2A;
        padding-left: 10px;
        padding-bottom: 15px;
        font-size: 18px;
        line-height: 1.6;
    }

    .faq-text {
        font-size: 18px;
        font-weight: 500;
    }

    #btn-blrb-1-img-desktop {
        display: block;
    }

    #btn-blrb-1-img-mobile {
        display: none;
    }

    /* ========== Form Container Layout ========== */
    .contact-form-container {
        display: flex;
        width: 1200px;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 30px;
        gap: 30px;
        height: auto;
    }

    .contact-left-column {
        flex: 7;
        display: flex;
    }

    .contact-right-column {
        flex: 3;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* ========== Form Box & Typography ========== */
    .contact-form-box {
        width: 100%;
        background: url('images/ad-form-texture.jpg') no-repeat center center; /* Update with actual texture image path */
        background-color: #323232;
        background-size: cover;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        color: #ffffff;
    }

    .form-title {
        padding: 30px 0 0 30px;
        font-size: 45px;
        letter-spacing: 5px;
    }

    .form-subtitle {
        padding: 0 0 0 30px;
        font-size: 33px;
        letter-spacing: 5px;
    }

    .form-text {
        font-size: 12px;
        margin: 0;
        padding: 0;
    }

    #form-thankyou{
        font-size: 35px;
        letter-spacing: 5px;
        padding-top: 30px;
    }

    /* ========== Form Structure ========== */
    .contact-2col-5050 {
        padding-top: 30px;
        display: flex;
        width: 100%;
        gap: 30px;
    }

    .contact-2col-5050-1,
    .contact-2col-5050-2 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* ========== Input / Textarea Styles ========== */
    .contact-form-input {
        width: 100%;
        padding: 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: rgb(255, 255, 255);
        color: #000000;
        font-size: 14px;
        box-sizing: border-box;
        resize: none;
    }

    .contact-form-input-large {
        width: 100%;
        padding: 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: rgb(255, 255, 255);
        color: #000000;
        font-size: 14px;
        box-sizing: border-box;
        resize: none;
        height: 400px;
    }

    /* ========== Title Row (Logo + Headings) ========== */
    .contact-2col-title {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 150px;
        width: 100%;
    }

    .contact-2col-title1 {
        flex: 0 0 20%;
    }

    .contact-2col-title1 img {
        margin-top: -30px;
        height: 200px;
        width: auto;
    }

    .contact-2col-title2 {
        flex: 0 0 80%;
    }

    /* ========== CTA Side Column ========== */
    .contact-cta-box {
        width: 100%;
        border-radius: 15px;
        background-color: rgba(0, 0, 0, 0.9); /* 0.7 = 70% opacity */      
        padding: 20px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
        color: #ffffff;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .contact-cta-top {
        height: 15%;
    }

    .contact-cta-mid,
    .contact-cta-bottom {
        height: 42.5%;
    }

    .contact-cta-box h4 {
        font-size: 20px;
        letter-spacing: 2px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

      .contact-cta-mid img{
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 5px;
        margin-top: 10px;
    }

    .contact-cta-bottom img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 5px;
        margin-top: 10px;
    }

    /* ========== CTA Form & Button ========== */
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: rgb(255, 255, 255);
        color: #000000;
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        height: 40px;
        background-color: #8d8ac3;
        color: #2A2A2A;
        border: 4px solid black;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background-color: #8d8ac3;
        color: white;
        border-color: white;
    }

    .select-wrapper {
        position: relative;
        width: 100%;
    }

    .contact-form-select {
        width: 100%;
        padding: 10px 40px 10px 10px;
        border: 2px solid #333;
        border-radius: 5px;
        background-color: #000;
        color: #fff;
        font-size: 14px;
        box-sizing: border-box;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        overflow: visible;
    }

    /* ========== Utility Text Styles ========== */
    .commission-break {
        margin-top: 10px;
        border: 2px solid #8d8ac3;
    }

    .commission-status-open {
        font-size: 30px;
        letter-spacing: 10px;
        color: #8d8ac3;
        font-weight: 600;
        margin-top: 15px;
    }

    h4.cta-title{
        font-size:20px;
        letter-spacing: 4px;
        margin: 15px 0 5px 0;
    }

    .cta-text {
        font-size: 12px;
        line-height: 2;
    }

    #newletter-body{
        margin-bottom: 10px;
    }

    #shop-aeviternal-cta-title{
        letter-spacing: 2px;
    }

    .checkbox-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .checkbox-grid label {
        display: flex;
        align-items: center;
        font-size: 14px;
        gap: 8px;
        color: #fff;
        font-family: "Montserrat", sans-serif;
    }

    .checkbox-grid input[type="checkbox"] {
        accent-color: #8d8ac3;
        width: 20px;
        height: 20px;
    }

    .form-thankyou {
        font-family: "Pacifico", cursive;
        font-weight: 400;
        font-style: normal;
    }

    #contact-form-desktop{
      display: block;
    }

    #contact-form-mobile{
      display: none;
    }

    .stainedglass{
        height: auto;
        width: 100%;
    }

    .thankyou-title{
        text-align: center;
        font-size:45px ;
        margin-top: 0px;
        padding-top: 10px;
    }

    .thankyou-logo{
        height: 450px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    #opening-btn {
    margin-top:0px;}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(189, 178, 255, 0.6);
  border-color: #beb1ff;
}

}

/*////////////////////// DESKTOP - Large 1600+ px ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


@media screen and (min-width: 1600px) {
 

}