/* ==========================================================================
   Vows and Video - Brand CSS (Dark Theme)
   ==========================================================================

   Color Palette:
   - Background dark:     #181818
   - Accent teal:         #68ccd1
   - White:               #ffffff
   - Text body:           rgba(255,255,255,0.85)
   - Card white:          #ffffff
   - Button hover bg:     rgba(65,67,69,1)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Global / Reset
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    background-color: #181818;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 48px; font-weight: 700; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 1.2em;
    color: rgba(255,255,255,0.85);
}

a {
    color: #68ccd1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   3. No Sidebar Enforcement
   -------------------------------------------------------------------------- */
.et_no_sidebar #left-area,
.et_no_sidebar .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    float: none !important;
}

#sidebar {
    display: none !important;
}

.et_right_sidebar #left-area,
.et_left_sidebar #left-area {
    width: 100% !important;
    float: none !important;
}

/* --------------------------------------------------------------------------
   4. Divi Header / Navigation Overrides
   -------------------------------------------------------------------------- */

/* Hide top header, social icons, search */
#top-header,
.et_header_style_left .et-fixed-header #et-top-navigation,
#et-info,
.et_search_outer,
#et_top_search,
.et-social-icons,
.et_header_style_left .et_head_social_icons {
    display: none !important;
}

/* Main header bar */
#main-header,
#main-header.et-fixed-header {
    background-color: #181818 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

/* Navigation container */
.container.clearfix.et_menu_container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo styling */
.vv-logo,
#logo {
    max-height: 80px !important;
    width: auto !important;
    transition: all 0.4s ease;
}

/* Logo on scroll/sticky */
.et-fixed-header .vv-logo,
.et-fixed-header #logo {
    max-height: 54px !important;
}

.logo_container {
    padding: 10px 0;
}

/* Nav menu items */
#top-menu li a,
.et_header_style_left #et-top-navigation nav > ul > li > a {
    font-family: "Montserrat", sans-serif !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding-bottom: 10px !important;
    transition: color 0.3s ease, opacity 0.3s ease !important;
}

#top-menu li a:hover,
.et_header_style_left #et-top-navigation nav > ul > li > a:hover {
    color: #68ccd1 !important;
    opacity: 1 !important;
}

/* Active menu item */
#top-menu li.current-menu-item a,
#top-menu li.current_page_item a {
    color: #68ccd1 !important;
}

/* Dropdown menus */
#top-menu li ul.sub-menu {
    background-color: #181818 !important;
    border-top: 3px solid #68ccd1;
    padding: 10px 0;
}

#top-menu li ul.sub-menu li a {
    font-size: 13px !important;
    padding: 8px 20px !important;
}

#top-menu li ul.sub-menu li a:hover {
    background-color: rgba(104, 204, 209, 0.1) !important;
}

/* --------------------------------------------------------------------------
   5. Mobile Menu
   -------------------------------------------------------------------------- */
.mobile_menu_bar::before {
    color: #ffffff !important;
}

#mobile_menu {
    background-color: #181818 !important;
    border-top: 3px solid #68ccd1;
}

#mobile_menu li a {
    font-family: "Montserrat", sans-serif !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#mobile_menu li a:hover {
    color: #68ccd1 !important;
    background-color: rgba(104, 204, 209, 0.05) !important;
}

/* Hamburger icon */
.mobile_nav .mobile_menu_bar::before {
    font-size: 32px;
}

/* --------------------------------------------------------------------------
   6. Hero Sections
   -------------------------------------------------------------------------- */
.vv-hero,
.et_pb_fullwidth_header {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle dark overlay for text readability */
.vv-hero::before,
.et_pb_fullwidth_header .et_pb_fullwidth_header_overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.22);
    z-index: 1;
}

.vv-hero-content,
.et_pb_fullwidth_header .header-content-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.vv-hero h1,
.et_pb_fullwidth_header .et_pb_module_header {
    color: #ffffff !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.3em;
}

.vv-hero p,
.et_pb_fullwidth_header .et_pb_header_content_wrapper p {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   7. Button Styles (Divi Override) - Ghost/Outline Default
   -------------------------------------------------------------------------- */
.et_pb_button,
.et_pb_module .et_pb_button,
body .et_pb_button {
    font-family: "Montserrat", sans-serif !important;
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 3px !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.et_pb_button:hover,
.et_pb_module .et_pb_button:hover,
body .et_pb_button:hover {
    background-color: rgba(65,67,69,1) !important;
    border-color: rgba(65,67,69,1) !important;
    color: #ffffff !important;
}

/* Remove Divi default button arrow */
.et_pb_button::after,
.et_pb_more_button::after {
    display: none !important;
}

/* Keep .fh-button as teal (booking buttons) */
.fh-button {
    background-color: #68ccd1 !important;
    color: #ffffff !important;
    border: 2px solid #68ccd1 !important;
}

.fh-button:hover {
    background-color: transparent !important;
    color: #68ccd1 !important;
}

/* --------------------------------------------------------------------------
   8. Testimonial Styling
   -------------------------------------------------------------------------- */
.vv-testimonial {
    text-align: center;
    max-width: 700px;
    margin: 40px auto;
    padding: 40px 30px;
}

.vv-testimonial-quote {
    font-family: "Special Elite", cursive;
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.vv-quote-mark {
    font-family: "Special Elite", cursive;
    font-size: 48px;
    color: #68ccd1;
    line-height: 1;
    vertical-align: text-top;
}

.vv-testimonial-author {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #68ccd1;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   9. Package Card Styling
   -------------------------------------------------------------------------- */
.vv-package-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.vv-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vv-package-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vv-package-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.vv-package-content {
    padding: 30px;
    text-align: center;
}

.vv-package-name {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #463939;
    margin-bottom: 8px;
}

.vv-package-tagline {
    font-family: "Special Elite", cursive;
    font-size: 16px;
    color: #68ccd1;
    margin-bottom: 15px;
    font-style: italic;
}

.vv-package-price {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1A1B1F;
    margin-bottom: 20px;
}

.vv-package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.vv-package-includes li {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: #454545;
    padding: 8px 0;
    border-bottom: 1px solid #F2F2F2;
    position: relative;
    padding-left: 10px;
}

.vv-package-includes li::before {
    content: "";
}

/* --------------------------------------------------------------------------
   10. A La Carte Section
   -------------------------------------------------------------------------- */
.vv-alacarte-section {
    background-color: #181818;
    padding: 80px 0;
}

.vv-alacarte-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.vv-alacarte-item {
    background: rgba(255,255,255,0.05);
    padding: 25px 30px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.vv-alacarte-item:hover {
    transform: translateX(4px);
}

.vv-alacarte-item-name {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.vv-alacarte-item-price {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #68ccd1;
}

/* --------------------------------------------------------------------------
   11. Custom Footer (#vv-custom-footer)
   -------------------------------------------------------------------------- */
#vv-custom-footer {
    background-color: #181818;
    color: #ffffff;
    padding: 0;
}

.vv-footer-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.vv-footer-content {
    flex: 1;
    min-width: 300px;
}

.vv-footer-heading {
    font-family: "Special Elite", cursive;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.vv-footer-text {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.vv-footer-contact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.vv-footer-contact a {
    color: #68ccd1;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.vv-footer-contact a:hover {
    color: #ffffff;
}

.vv-footer-form {
    flex: 1;
    min-width: 300px;
}

.vv-footer-bottom {
    text-align: center;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vv-footer-bottom p {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* --------------------------------------------------------------------------
   12. Contact Form Styling (Footer)
   -------------------------------------------------------------------------- */
#vv-custom-footer .wpcf7 input[type="text"],
#vv-custom-footer .wpcf7 input[type="email"],
#vv-custom-footer .wpcf7 input[type="tel"],
#vv-custom-footer .wpcf7 input[type="url"],
#vv-custom-footer .wpcf7 textarea,
#vv-custom-footer .wpcf7 select {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    padding: 12px 0;
    width: 100%;
    transition: border-color 0.3s ease;
    outline: none;
}

#vv-custom-footer .wpcf7 input[type="text"]:focus,
#vv-custom-footer .wpcf7 input[type="email"]:focus,
#vv-custom-footer .wpcf7 input[type="tel"]:focus,
#vv-custom-footer .wpcf7 input[type="url"]:focus,
#vv-custom-footer .wpcf7 textarea:focus,
#vv-custom-footer .wpcf7 select:focus {
    border-bottom-color: #68ccd1;
}

#vv-custom-footer .wpcf7 input::placeholder,
#vv-custom-footer .wpcf7 textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#vv-custom-footer .wpcf7 textarea {
    min-height: 100px;
    resize: vertical;
}

#vv-custom-footer .wpcf7 input[type="submit"] {
    background-color: #68ccd1;
    color: #ffffff;
    border: 2px solid #68ccd1;
    border-radius: 3px;
    padding: 12px 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

#vv-custom-footer .wpcf7 input[type="submit"]:hover {
    background-color: transparent;
    color: #68ccd1;
}

#vv-custom-footer .wpcf7-response-output {
    color: rgba(255, 255, 255, 0.8);
    border-color: #68ccd1;
}

#vv-custom-footer .wpcf7 label {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   13. Section Spacing
   -------------------------------------------------------------------------- */
.et_pb_section {
    padding: 80px 0;
}

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

.et_pb_section.vv-section-tight {
    padding: 40px 0;
}

.et_pb_section.vv-section-spacious {
    padding: 120px 0;
}

/* --------------------------------------------------------------------------
   14. Animations - Fade in on Scroll
   -------------------------------------------------------------------------- */
@keyframes vvFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vv-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vv-animate.vv-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Divi module fade-in (intersection observer driven) */
.et_pb_section,
.et_pb_row,
.et_pb_column {
    opacity: 1; /* Ensure Divi sections are visible by default */
}

/* --------------------------------------------------------------------------
   15. Misc Divi Overrides
   -------------------------------------------------------------------------- */

/* Ensure full-width layouts */
.et_pb_fullwidth_section {
    padding: 0 !important;
}

/* Gallery hover */
.et_pb_gallery_item .et_overlay {
    background-color: rgba(104, 204, 209, 0.8) !important;
}

/* Blurb module icons */
.et_pb_blurb_content .et-pb-icon {
    color: #ffffff !important;
    opacity: 1 !important;
    font-size: 48px;
}

/* Ensure blurb icon waypoint animation doesn't hide them */
.et_pb_blurb .et-waypoint.et-pb-icon {
    opacity: 1 !important;
}

/* Divider */
.et_pb_space,
.et_pb_divider .et_pb_divider_internal {
    border-color: #68ccd1 !important;
}

/* Text selection */
::selection {
    background: #68ccd1;
    color: #ffffff;
}

::-moz-selection {
    background: #68ccd1;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   16. Divi Dark Section Text Insurance
   -------------------------------------------------------------------------- */
.et_pb_bg_layout_dark,
.et_pb_bg_layout_dark h1,
.et_pb_bg_layout_dark h2,
.et_pb_bg_layout_dark h3,
.et_pb_bg_layout_dark h4,
.et_pb_bg_layout_dark h5,
.et_pb_bg_layout_dark h6,
.et_pb_bg_layout_dark p {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   17. Divi Testimonial Module Fixes (Dark Theme)
   -------------------------------------------------------------------------- */
.et_pb_testimonial {
    border: none !important;
}

.et_pb_testimonial_content {
    color: #ffffff;
}

.et_pb_testimonial .et_pb_testimonial_author {
    color: #ffffff;
}

.et_pb_testimonial_portrait_wrapper {
    display: none;
}

.et_pb_testimonial .et-pb-icon {
    display: none !important;
}

/* --------------------------------------------------------------------------
   18. Portfolio Contact Form (Dark Section)
   -------------------------------------------------------------------------- */
.et_pb_section .wpcf7 input[type="text"],
.et_pb_section .wpcf7 input[type="email"],
.et_pb_section .wpcf7 input[type="tel"],
.et_pb_section .wpcf7 textarea,
.et_pb_section .wpcf7 select {
    background: rgba(105,105,105,1);
    border: none;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    padding: 12px;
    width: 100%;
    margin-bottom: 10px;
}

.et_pb_section .wpcf7 input::placeholder,
.et_pb_section .wpcf7 textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

/* --------------------------------------------------------------------------
   19. Blurb Image Styling (Package Cards with Images)
   -------------------------------------------------------------------------- */
.et_pb_blurb .et_pb_main_blurb_image img {
    border-radius: 10px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   20. Features Grid (Home Page Two Vows Section)
   -------------------------------------------------------------------------- */
.vv-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vv-feature-item {
    text-align: center;
}

.vv-feature-item h4 {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    margin: 10px 0 5px;
}

.vv-feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   21. Responsive - 980px (Tablet)
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 980px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }

    .vv-hero h1,
    .et_pb_fullwidth_header .et_pb_module_header {
        font-size: 30px !important;
    }

    .et_pb_section {
        padding: 60px 0;
    }

    .vv-footer-inner {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }

    .vv-footer-content,
    .vv-footer-form {
        min-width: 100%;
    }

    .vv-footer-heading {
        font-size: 26px;
    }

    /* Hamburger menu visible */
    .mobile_menu_bar {
        display: block !important;
    }

    /* Stack package cards */
    .vv-package-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --------------------------------------------------------------------------
   22. Responsive - 768px (Small Tablet)
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }

    body {
        font-size: 15px;
    }

    .vv-hero h1,
    .et_pb_fullwidth_header .et_pb_module_header {
        font-size: 28px !important;
    }

    .et_pb_section {
        padding: 50px 0;
    }

    .et_pb_row {
        padding: 0 15px;
    }

    /* Full-width buttons on smaller screens */
    .et_pb_button,
    .fh-button {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }

    .vv-testimonial {
        padding: 30px 15px;
    }

    .vv-testimonial-quote {
        font-size: 18px;
    }

    .vv-package-content {
        padding: 25px 20px;
    }

    .vv-alacarte-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .vv-features-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   23. Responsive - 480px (Mobile)
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    h3 { font-size: 20px; }

    body {
        font-size: 14px;
    }

    .vv-hero h1,
    .et_pb_fullwidth_header .et_pb_module_header {
        font-size: 24px !important;
    }

    .vv-hero p,
    .et_pb_fullwidth_header .et_pb_header_content_wrapper p {
        font-size: 15px;
    }

    .et_pb_section {
        padding: 40px 0;
    }

    .et_pb_row {
        padding: 0 12px;
    }

    .vv-logo,
    #logo {
        max-height: 60px !important;
    }

    .et-fixed-header .vv-logo,
    .et-fixed-header #logo {
        max-height: 44px !important;
    }

    .vv-footer-inner {
        padding: 30px 20px;
        gap: 30px;
    }

    .vv-footer-heading {
        font-size: 22px;
    }

    .vv-footer-bottom {
        padding: 15px 20px;
    }

    .vv-testimonial {
        padding: 20px 10px;
        margin: 20px auto;
    }

    .vv-testimonial-quote {
        font-size: 16px;
    }

    .vv-quote-mark {
        font-size: 36px;
    }

    .vv-package-image {
        height: 180px;
    }

    .vv-package-name {
        font-size: 20px;
    }

    .vv-package-price {
        font-size: 20px;
    }

    #mobile_menu li a {
        font-size: 13px !important;
        padding: 10px 15px !important;
    }
}
