@charset "UTF-8";

/* ============================================
   RESET & ROOT
   ============================================ */

html, html * {
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

:root {
    --primary-color: #006054;
    --secondary-color: #FFFFFF;
    --accent-color: #943535;
}

/* ============================================
   BASE ELEMENTS
   ============================================ */

body {
    padding-top: 100px;
    font-family: "Lora", "supria-sans", sans-serif;
    background: #FFF2EE;
    max-width: 1200px;
    overflow-x: clip;
    margin: 0 auto;
}

main {
    margin-top: 0;
}

.policy{
    padding: 20px, 30px, 10px, 30px;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #fcf5ed;
}

a:hover {
    color: #C6524F;
    cursor: pointer;
}

a:active {
    color: #943535;
    cursor: pointer;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 35px;
    font-family: "Lora", serif;
}

h1 {
    font-family: "Lora", serif;
    font-size: 37px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0px;
    text-align: center;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 23px;
    font-family: "Lora", serif;
    font-weight: 700;
    font-style: normal;
}

h3 {
    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 25px;
}

h4 {
    font-family: "Lora", serif;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 35px;
    color: white;
    text-align: center;
    font-style: italic;
}

h5 {
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 8px;
    margin-top: 20px;
    font-family: "Lora", serif;
}

h6 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 40px;
    padding-left: 25px;
    padding-right: 25px;
    color: black;
    text-align: left;
    font-family: "Supria-sans";
}

input {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 40px;
    font-weight: 200;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 30px;
    width: 100%;
    min-width: 7px;
    font-family: "supria-sans", "sans-serif";
}

textarea {
    font-size: 20px;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 40px;
    font-weight: 200;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 150px;
    width: 100%;
    min-width: 7px;
}

select {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 40px;
    font-weight: 200;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 30px;
    width: 100%;
    min-width: 7px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    padding: 20px 200px;
    background-color: #006054;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    max-width: 100%;
    min-height: 60px;
    font-family: "Lora", "supria-sans", "sans-serif";
    align-items: center;
    justify-content: space-between;
    display: flex;
    z-index: 300;
}

.style-logo {
    display: block;
    width: 220px;
    padding: 15px;
    float: left;
}

.style-nav {
    float: right;
}

.style-nav ul {
   text-align: center;
   display: flex;
   gap: 1rem;
   list-style: none;
   margin: 0;
   padding: 0;
}


.style-nav ul li a {
    text-decoration: none;
    font-family: "supria-sans", "Lora", "sans-serif";
    color: #FFFFFF;
    display: block;
    text-transform: uppercase;
    padding: 15px;
	
}

.style-nav li {
    display: inline-block;
}

.container-header {
    display: block;
    float: right;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger-menu {
    display: none;
    height: 50px;
    width: 50px;
    margin-top: 40px;
    margin-right: 20px;
    float: right;
    position: relative;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    height: 5px;
    width: 100%;
    background-color: #fcf5ed;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    box-sizing: border-box;  /* add this */
}

.hamburger-menu span:nth-child(1) { top: 25%; }
.hamburger-menu span:nth-child(3) { top: 75%; }

.hamburger-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotateZ(-45deg);
}

.menu-btn-hb {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Off-screen menu */
.off-screen-menu {
    background-color: rgb(34, 37, 49);
    height: 100vh;
    width: 100%;
    max-width: 550px;
    position: fixed;
    top: 0;
    right: -550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: "supria-sans", sans-serif;
    padding: 120px 40px 10px 40px;  /* increase top padding from 10px to 100px */
    font-size: 2.3rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.off-screen-menu.active,
.off-screen-menu.show-menu {
    right: 0;
}

.nav {
    display: none;
}

nav.navbar {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    padding: 40px 200px;
    background-color: #006054;
    max-width: 100%;
    width: 100%;
    left: 0;
    position: absolute;
}

.footer-text {
    font-size: 17px;
    margin-bottom: 3px;
    color: #FFFFFF;
    font-family: 'supria-sans', sans-serif;
    vertical-align: middle;
}

.footer-contact {
    float: right;
    padding-right: 50px;
    text-decoration: none;
}

.footer-info {
    float: left;
    padding-left: 50px;
}

.social-logos-footer {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 70px;
}

.social-footer {
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-logos {
    display: none;
}

.social-logos-header {
    display: none;
}

.social-logos-container {
    display: flex;
    justify-content: left;
    padding: 0px;
    margin-bottom: 20px;
    gap: 20px;
}

.social {
    text-decoration: none;
    width: 30px;
    height: auto;
}

.icon {
    width: 2em;
    height: 2em;
    vertical-align: -0.125em;
    display: block;
    color: white;
    padding: 4px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: -100px;
    height: clamp(500px, 120vh, 950px);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 900px;
    object-fit: cover;
    display: block;
}

/* ============================================
   LAYOUT - CONTAINERS, GRID, FLEX
   ============================================ */

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

.col {
    float: left;
    padding: 0px 7px 0px;
    width: 100%;
}

.col-md-one-half { width: 50%; }
.col-lg-one-half { width: 50%; }
.col-lg-one-third { width: 33.3333%; }
.col-lg-one-fourth { width: 25%; }

.row:before, .row:after {
    content: "";
    display: table;
}

.row:after {
    clear: both;
}

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

.grid-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
    justify-content: space-between;
    margin: 20px;
}

.grid-table {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-table2 {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
}

.grid-table-blog {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

.grid-table-contact {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.flex-container-top {
    margin-top: 70px;
}

.flex-containerA {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-containerB {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-box1 { padding-right: 30px; padding-left: 0px; flex-basis: 50%; }
.flex-box2 { padding-left: 30px; flex-basis: 50%; }
.flex-box3 { padding-right: 20px; flex-basis: 50%; }
.flex-box4 { padding-right: 40px; padding-left: 30px; flex-basis: 50%; }
.flex-box5 { flex-basis: 65%; float: left; width: 65%; }
.flex-box6 { padding-right: 50px; flex-basis: 30%; float: right; }
.flex-box7 { padding-right: 50px; flex-basis: 50%; width: 100%; display: flex; }
.flex-box8 { flex-basis: 50%; width: 100%; }
.flex-box9 { padding-right: 30px; flex-basis: 50%; }
.flex-box10 { padding-left: 30px; flex-basis: 50%; }

.container-contact {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* ============================================
   CARDS
   ============================================ */

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px auto 0;
    width: 100%;
    gap: 20px;
}

.card {
    width: 325px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin: 20px;
    padding: 20px;
}

.card-packages {
    width: 100%;
    max-width: 100%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin: 20px;
    padding: 20px;
}

.card h2 { color: white; font-size: 28px; margin-top: 10px; }
.card p { color: white; margin-top: 5px; line-height: 1.3; text-align: left; }

h4.card-title {
    font-family: "Lora", serif;
    font-size: 25px;
    font-weight: 400;
    margin: -20px -20px 10px -20px;
    color: #006054;
    text-align: center;
    padding: 20px 0px 0px 0px;
    border-radius: 8px 8px 0px 0px;
    font-style: normal;
}

.card-packages h3-b.petite {
    margin: -20px -20px 20px -20px;
    padding: 15px 20px;
    background-color: #bc5050;
    text-align: center;
    display: block;
}

.card-packages h3-b.celebration {
    margin: -20px -20px 20px -20px;
    padding: 15px 20px;
    background-color: #006054;
    text-align: center;
    display: block;
}

.card-packages h3-b.keepsake {
    margin: -20px -20px 20px -20px;
    padding: 15px 20px;
    background-color: #dab3aa;
    text-align: center;
    display: block;
}

/* ============================================
   TYPOGRAPHY CLASSES
   ============================================ */

.heading { color: #a33f3d; font-size: 27px; margin-top: 0px; }

.h1-heading { font-family: "Lora", serif; text-align: center; font-weight: 700; color: #a33f3d; }
.h1-faqs { font-family: "Lora", serif; padding-top: 90px; padding-bottom: 40px; text-align: center; font-weight: 700; color: #a33f3d; }
.h1-policy { font-family: "Lora", serif; padding-top: 90px; padding-bottom: 40px; text-align: center; font-weight: 700; color: #000000; }
.h1-blog { font-size: 25px; text-transform: uppercase; margin-bottom: 23px; text-align: left; font-family: "supria-sans", "sans-serif"; font-weight: 700; }
.h1-intro { font-size: 35px; text-transform: uppercase; margin-bottom: 20px; text-align: left; font-family: "Lora", serif; font-weight: 700; }

.h2-heading { text-align: left; font-family: "Lora", serif; color: #a33f3d; }
.h2-left { font-family: "Lora", serif; text-align: left; font-weight: 700; color: #a33f3d; }
.h2-center { font-family: "Lora", serif; text-align: center; font-weight: 700; color: #a33f3d; }
.h2-faqs { font-size: 23px; text-transform: none; padding-top: 10px; margin-bottom: 5px; text-align: left; font-family: "Lora", serif; font-weight: 700; }
.h2-main { font-size: 35px; }
.h2-white { font-size: 35px; color: white; font-family: lora, serif; }
.h2-sub { font-size: 22px; text-transform: capitalize; margin-bottom: 20px; text-align: center; font-family: "supria-sans", "sans-serif"; font-weight: 700; }

.h4-black { color: #000000; font-size: 23px; margin-bottom: 15px; text-align: left; padding-left: 25px; padding-right: 25px; }

.optional-extra h6 {
    font-size: 18px;
    margin: 0;
    margin-left: 50px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    color: black;
}

h3-b {
    font-family: "Lora", serif;
    font-size: 28px;
    font-weight: 400;
    color: white;
    text-align: center;
    display: table;
    margin: 0px auto;
}

h4-c {
    font-family: "Lora", serif;
    font-size: 25px;
    font-weight: 700;
    color: white;
    text-align: center;
    font-style: italic;
    display: table;
    margin: 0px auto;
    padding: 7px 40px;
    border-radius: 8px 8px 0px 0px;
    background-color: #006054;
}

h4-c2 {
    font-family: "Lora", serif;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #006054;
    text-align: right;
    font-style: italic;
}

h4-b2 {
    font-family: "Lora", serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #943535;
    text-align: right;
    font-style: italic;
}

h4-d {
    font-family: "Lora", serif;
    font-size: 28px;
    font-weight: 700;
    padding-top: 30px;
    margin-top: 40px;
    margin-bottom: 35px;
    color: black;
    text-align: right;
}

p.policy {
	margin: 30px 30px 30px 0px;
	padding: 0 30px 0 30px;
}
p.grid2-p {
    text-align: left;
    line-height: 1.3;
    font-size: 18px;
    font-family: "supria-sans", "sans-serif";
    color: #a33f3d;
}

p.packages {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: 50px;
    padding-left: 10px;
    text-align: left;
    font-family: "Supria-sans";
}

p.p-review {
    font-size: 20px;
    font-family: "supria-sans", sans-serif;
    color: #101010;
}

p.p-cta {
    font-size: 20px;
    font-family: "supria-sans", sans-serif;
    color: #ffffff;
}

.p-left {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: 25px;
    margin-right: 25px;
    text-align: left;
    font-family: "supria-sans", "sans-serif";
}

.p-center {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: 25px;
    margin-right: 25px;
    text-align: center;
}

.p-name-black { font-family: "Lora"; font-size: 13pt; color: #101010; font-weight: 400; }
.p-name-white { font-family: "Lora"; font-size: 13pt; color: #ffffff; font-weight: 400; }
.p-blog { font-family: "supria-sans", "sans-serif" !important; }

.grid2-h2 {
    text-align: left;
    line-height: 2;
    font-size: 35px;
    font-family: "supria-sans", "sans-serif";
    text-transform: uppercase;
    padding-top: 15px;
}

.grid-h2 { text-align: center; padding-top: 15px; }
.grid-paragraph { text-align: center; line-height: 1.3; font-size: 16px; padding: 0px 15px; }
.grid-img { display: block; width: 80%; margin-left: auto; margin-right: auto; padding-bottom: 25px; }

.ul-p { color: black; margin-top: 5px; line-height: 1.3; text-align: left; list-style-type: none; }

ul.policy { text-align: left; padding: 0 30px 0 30px; color: black; }
li.policy { margin-left: 30px; }

.li-p {
    color: black;
    margin-top: 17px;
    font-size: 20px;
    line-height: 1.3;
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Lora", serif;
}

li.weddings {
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.3;
    text-align: left;
    padding-left: 10px;
    margin-left: 15px;
    font-family: "supria-sans", "sans-serif";
    color: #a33f3d;
}

li.weddingpackage {
    color: black;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
    text-align: left;
    padding-left: 10px;
    margin-left: 50px;
    font-family: "supria-sans", "sans-serif";
}

.input-type { font-family: "Supria-sans"; font-size: 16px; }
.blog-link { color: #000000; }
.hr1 { height: 2px; background-color: #10484C; }

/* ============================================
   QUOTE / BANNER SECTIONS
   ============================================ */

.quote1 {
    text-align: center;
    background-color: #FDDFD7;
    color: #101010;
    font-size: 36px;
    padding: 70px 280px;
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(-50vw + 50%);
    clear: both;
}

.quote2 {
    font-size: 27px;
    padding-right: 60px;
    padding-left: 60px;
    font-family: "Lora", serif;
}

.blockquote-packages {
    text-align: center;
    background-color: #FDDFD7;
    color: #101010;
    font-size: 36px;
    padding: 70px 110px;
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(-50vw + 50%);
    clear: both;
}

.quote-review {
    text-align: center;
    background-color: #bc5050;
    color: #ffffff;
    font-size: 36px;
    padding: 60px 160px 30px 160px;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(-50vw + 50%);
    clear: both;
    font-family: "supria-sans", sans-serif;
}

.blog-divider {
    text-align: left;
    background-color: #FDDFD7;
    color: #101010;
    display: block;
    padding-bottom: 30px;
    padding-top: 60px;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(-50vw + 50%);
    clear: both;
    font-family: "supria-sans", "sans-serif";
}

/* ============================================
   INFO BOXES
   ============================================ */

.info-box-tan { background-color: #b9a88e; color: #FFFFFF; text-align: center; }
.info-box-packages { background-color: #0D5C60; color: #FFFFFF; padding: 70px 60px 87px; text-align: left; }

.info-box-dark-contact {
    background-color: #C6524F;
    color: #FFFFFF;
    padding: 60px 80px 87px;
    text-align: left;
    margin-top: 60px;
    width: 100%;
}

.info-box-dark-contact2 {
    background-color: #C6524F;
    color: #FFFFFF;
    padding: 60px 80px 87px;
    text-align: left;
    margin-top: 60px;
    width: 100%;
}

.info-box-review {
    background-color: #D67C67;
    color: #FFFFFF;
    padding: 30px 25px 20px;
    text-align: center;
    width: 100%;
}

.info-box-three {
    background-color: #ffffff;
    padding: 30px 20px 20px;
    text-align: center;
}

.info-box-clear {
    background-color: #FEF2EE;
    color: #2F322A;
    padding: 30px 20px 0px;
    text-align: center;
    width: 100%;
}

.info-box-hello {
    background-color: #FEF2EE;
    color: #2F322A;
    padding: 80px 50px 20px;
    text-align: left;
    width: 100%;
    display: inline-block;
    float: right;
}

.form-contact { width: 100%; }

/* ============================================
   BUTTONS
   ============================================ */

.button {
    border: 2px #FFFFFF solid;
    padding: 8px 30px;
    border-radius: 30px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Supria-sans", "sans-serif";
}

.submit-button {
    border: 2px #FFFFFF solid;
    width: 150px;
    padding: 15px;
    border-radius: 30px;
    color: #FFFFFF;
    background-color: #C6524F;
    text-align: center;
    font-size: 17px;
    font-family: "ubuntu", "sans-serif";
}

.submit-button:hover {
    border: 1px solid #ffffff;
    background: #ffffff;
    transition: 1s;
    color: #A4403E;
}

.contactme-button {
    padding: 10px 30px;
    border-radius: 20px;
    color: #FFFFFF;
    background-color: #006054;
    text-decoration: none;
    font-size: 12pt;
    font-family: "ubuntu", "sans-serif";
    text-transform: uppercase;
    font-weight: 100;
}

.contactme-button:hover {
    border: 1px solid #003D38;
    background: #003D38;
    transition: 1s;
}

.contactme-button-red {
    padding: 10px 30px;
    border-radius: 20px;
    color: #FFFFFF;
    background-color: #943535;
    text-decoration: none;
    font-size: 12pt;
    font-family: "ubuntu", "sans-serif";
    text-transform: uppercase;
    font-weight: 100;
}

.contactme-button-red:hover {
    border: 1px solid #84252A;
    background: #84252A;
    transition: 1s;
}

/* ============================================
   FAQ
   ============================================ */

.faq-item {
    background-color: #fbcfc6;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.08);
}

.faq-question {
    cursor: pointer;
    padding: 18px 22px;
    background-color: #FDDFD7;
    font-family: "Supria-sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    color: #a33f3d;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #bc5050;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    padding: 0 22px;
    background-color: #ffffff;
    font-family: "Lora", serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2F322A;
}

.faq-item.open .faq-answer {
    max-height: 800px;
    padding: 18px 22px 22px;
}

.faq-question .arrow { transition: transform 0.3s ease; }
.faq-item.open .arrow { transform: rotate(180deg); }

.faq-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0 50px 0;
}

/* Optional extras dropdown */
.optional-extra {
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.extras { margin: 0; }

.arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.optional-extra.open .arrow { transform: rotate(180deg); }

.extras-answer {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 10px;
    font-weight: normal;
}

.optional-extra.open .extras-answer {
    max-height: 200px;
    padding: 10px;
}

/* ============================================
   CAROUSEL / REVIEWS
   ============================================ */

.carousel-container {
    max-width: 1250px;
    margin: 60px auto;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    color: #101010;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0px 30px 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.review-content {
    flex: 1;
    text-align: center;
    color: #101010;
}

.review-content p { font-size: 1.2rem; line-height: 1.6; color: #010101 !important; }
.review-content strong { color: #010101 !important; font-family: 'supria-sans', sans-serif; }
.review-content em { color: #010101 !important; font-family: 'supria-sans', sans-serif; }

.arrow {
    font-size: 1.5rem;
    color: #000;
    background: #FADBD6;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.arrow:hover {
    background: #A4403E;
    color: white;
}

.review2 {
    text-align: center;
    background-color: #D67C67;
    color: #ffffff;
    font-size: 21px;
    padding: 70px 280px;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(-50vw + 50%);
}

.faq-item {
    margin-left: 30px;
	margin-right: 30px;
  }

/* ============================================
   PINTEREST / IMAGES
   ============================================ */

.pinterest-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: auto;
}

.pinterest-image {
    max-width: 450px;
    width: 100%;
    border-radius: 10px;
    display: block;
}

.img-bg-brown {
    max-height: 400px;
    object-fit: cover;
    width: 100vw;
    max-width: 100vw;
}

.hamburger-nav {
    position: fixed;
    top: -20px;
    right: 20px;
    z-index: 1000;
    display: none;
    height: 100px;
	align-items: center;
}



/* ============================================
   TABLET VIEW (800px - 1055px)
   ============================================ */

@media (max-width: 1055px) {
	
	.style-nav ul {
        display: none;
    }
	    .hamburger-menu {
        display: block;
        height: 50px;
        width: 50px;
        cursor: pointer;
        position: relative;
        flex-shrink: 0;   /* stops it squishing */
        margin: 0;
		z-index: 1001 !important;/* remove old margins */
    }

    .hamburger-nav {
        display: none;    /* hide the old external nav */
    }
	.faq-item {
    margin-left: 40px;
	margin-right: 40px;
  }
	

    .footer-contact {
        padding-right: 0;
    }

    .footer-info {
        padding-left: 0;
    }
	 footer {
        padding: 40px 20px;
    }
}


@media (min-width: 800px) and (max-width: 1055px) {
    body {
        max-width: 900px;
        margin: 0 auto;
    }
	
    header {
        padding: 20px 30px;
        position: fixed;
        justify-content: space-between;
		z-index: 1001 !important;
    }
    .header-logo {
        display: flex;
        justify-content: center;
    }
    .style-logo {
        align-items: center;
        justify-content: center;
    }
    .container-header {
        display: none;
    }
    .hero {
        height: clamp(500px, 80vh, 950px);
    }
    footer {
        padding: 40px 50px;
        position: absolute;
    }
    .footer-contact { display: none; }
    .footer-info { padding-left: 0; margin-left: 0; float: left; }
 footer {
        padding: 40px 20px;
    }


    .quote1 { padding: 30px 100px; }
    .quote-review { font-size: 30px; padding: 60px 80px 30px; }
    .blockquote-packages { padding: 70px; }
    .flex-container { padding: 20px 50px; }
    .flex-box5 {
        flex-basis: 100%;
        width: 100%;
        float: none;
    }

    .flex-box6 {
        flex-basis: 100%;
        float: none;
        padding: 30px 0px 50px 0px;
    }
    .flex-box7 { padding: 0px 30px; flex-basis: 100%; width: 100%; }
    .flex-box8 { padding: 0px 30px; flex-basis: 100%; width: 100%; }
    h1 { font-size: 35px; margin-bottom: 40px; }
    h2 { margin-bottom: 16px; }
    .h1-intro { font-size: 30px; }
    .h2-main { font-size: 30px; }
    .grid-h2 { font-size: 22px; }
    .grid-paragraph { font-size: 15px; }
    .p-review { font-size: 16px; }
    .grid-img { display: block; margin: auto; border-radius: 10%; }
    .info-box-dark-contact { padding: 70px 60px 87px; height: auto; }
    .info-box-review { padding: 40px 30px 20px; }
}


/* ============================================
   MOBILE VIEW (max 800px)
   ============================================ */

@media (max-width: 800px) {

    body {
        font-family: "Lora", "ubuntu", "sans-serif";
    }

    header {
        padding: 20px 25px;
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 60px;
        z-index: 1001 !important;
    }

    .header-logo {
        display: flex;
        justify-content: center;
    }

    .style-logo {
        align-content: center;
        align-items: center;
        text-align: center;
        display: flex;
    }

    .hamburger-menu {
        display: block;
        margin-top: 10px;
        margin-right: 10px;
		z-index: 1002 !important;
    }

    footer {
        padding: 40px 20px;
        position: relative;
    }

    .footer-contact {
        display: none;
    }

    .hero {
        height: 60svh;        /* reduced from 100svh to show more width */
        width: 100vw;
        margin-top: -100px;
        position: relative;
        left: 50%;
        margin-left: -50vw;
        overflow: hidden;
    }

    .hero-image {
        width: 100%;
        height: 600px;
        object-fit: cover;
        object-position: center top;  /* adjust this to pan up/down */
        display: block;
    }

  

    .quote1 { padding: 50px; }
    .quote2 { font-size: 22px; padding: 0; }

    .quote-review {
        font-size: 32px;
        padding: 50px 70px 40px;
    }

    .blockquote-packages {
        padding: 70px 30px;
    }

    .review2 {
        padding: 40px 20px;
    }

    .flex-container {
        padding: 0;
    }

    .flex-box1 { padding: 0px 40px 50px; flex-basis: 100%; }
    .flex-box2 { padding: 0px; flex-basis: 100%; margin-bottom: -84px; }
    .flex-box3 { padding: 0px; flex-basis: 100%; }
    .flex-box4 { padding: 40px 50px 0px; flex-basis: 100%; }
    .flex-box5 { padding: 0px; flex-basis: 100%; }
    .flex-box6 { padding: 50px 40px 30px; flex-basis: 100%; margin-bottom: -50px; }
    .flex-box7 { padding: 0px 0px 20px; flex-basis: 100%; width: 100%; }
    .flex-box8 { padding: 0px; flex-basis: 100%; width: 100%; }
    .flex-box9 { padding: 0px 0px 50px; flex-basis: 100%; margin-top: 50px; }
    .flex-box10 { padding: 40px 50px 0px; flex-basis: 100%; margin-bottom: -50px; }

    .grid-table { grid-template-rows: 1fr 1fr 1fr; grid-template-columns: auto; }
    .grid-table2 { grid-template-rows: auto auto; grid-template-columns: auto; }
    .grid-paragraph { font-size: 16px; padding: 3px 50px; }

    .info-box-dark-contact {
        padding: 60px 50px;
        height: auto;
    }

    .info-box-dark-contact2 {
        padding: 60px 50px 90px;
    }

    .info-box-clear {
        padding: 30px 20px 0px;
    }

    h1 { font-size: 28px; }
    h4 { font-size: 22px; }
    h6 { font-size: 20px; padding-left: 25px; padding-right: 25px; }
	
	
    .li-p { font-size: 16px; padding: 0px 20px; margin-top: 14px; }
    .p-left { font-size: 16px; }
    .input-type { font-size: 13px; }

    .review-wrapper {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        text-align: center;
    }

    .arrow-up { order: -1; }
    .arrow-down { order: 1; }
    .arrow { margin: 0 auto; }

    .review-content {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.5;
    }

    .carousel-slide { padding: 12px; 
	}
	
	
    .faq-container {
        padding-top: 80px;
		/* adjust to taste */
    }
	
	.faq-item {
    margin-left: 30px;
	margin-right: 30px;
  }
}


