/**
 * Valor Vacations USA - Custom Home Page Styles
 * Matching Wix Design Layout
 */

/* ===== GLOBAL TYPOGRAPHY ===== */
/* Headings use Palatino Linotype, paragraphs use Lato Light */
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300; /* Lato Light */
    font-size: 16px;
    line-height: 1.6;
    color: #1d1a05;
}

/* Heading Styles - Palatino Linotype */
h1 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 1.2;
}

h2 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 76px;
    font-weight: 400;
    line-height: 1.2;
}

h3 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
}

h4 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
}

h5 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
}

h6 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 23px;
    font-weight: 700; /* Bold */
    line-height: 1.2;
}

/* Paragraph Styles - Lato Light */
/* Apply to all text elements except headings */
p, div, span, li, td, th, a, button, input, textarea, select, label,
.btn, .dropdown-menu, .nav-items, .navigation-link {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 300 !important; /* Lato Light */
}

/* Ensure links also use Lato Light */
a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a) {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 300 !important;
}

/* Paragraph Size Classes */
p.p1, .p1 {
    font-size: 22px;
    line-height: 1.6;
}

p.p2, .p2 {
    font-size: 20px;
    line-height: 1.6;
}

p.p3, .p3 {
    font-size: 18px;
    line-height: 1.6;
}


/* Default paragraph size */
p {
    font-size: 16px; /* Default to p2 size */
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.valor-hero {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    min-height: 600px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Horizontal rules in hero section */
.hero-content hr {
    border: none;
    border-top: 2px solid #1d1a05;
    width: 100px;
    margin: 15px auto;
}

/* Override absolute positioning on search block - make it flow naturally in Explore Properties
.property-search-panel #htlSearchBlock,
.property-search-panel .htl_search_block,
.property-search-panel #search_hotel_block_form,
#explore-properties #htlSearchBlock,
#explore-properties .htl_search_block,
#explore-properties #search_hotel_block_form {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 !important;
} */

.welcome-text {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 300;
}

.logo-map-container {
    margin-bottom: 50px;
}

.usa-map-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}


.heart-logo {
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-logo {
    max-width: 500px;
    max-height: 500px;
}

.company-name {
    font-size: 42px;
    color: #333;
    margin: 20px 0 10px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.company-name sup {
    font-size: 18px;
    top: -1em;
}

.tagline {
    font-size: 32px;
}

/* Hero Carousel Container - 50% wider than original, fixed aspect ratio */
.hero-carousel-container {
    max-width: 960px; 
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.hero-carousel-container .carousel {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.hero-carousel-container .carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-carousel-container .carousel-inner > .item {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.6s ease-in-out left;
}

.hero-carousel-container .carousel-inner > .item.active {
    display: block;
}

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

/* Carousel Fade Effect - Crossfade both images */
.hero-carousel-container .carousel-fade .carousel-inner > .item {
    display: block !important;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: translate3d(0, 0, 0);
    z-index: 1;
}

.hero-carousel-container .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    z-index: 2;
}

.hero-carousel-container .carousel-fade .carousel-inner > .item.next,
.hero-carousel-container .carousel-fade .carousel-inner > .item.prev {
    left: 0;
    opacity: 0;
    z-index: 2;
}

.hero-carousel-container .carousel-fade .carousel-inner > .item.next.left,
.hero-carousel-container .carousel-fade .carousel-inner > .item.prev.right {
    opacity: 1;
}

.hero-carousel-container .carousel-fade .carousel-inner > .item.active.left,
.hero-carousel-container .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    z-index: 1;
}

/* Hide carousel controls and indicators */
.hero-carousel-container .carousel-control,
.hero-carousel-container .carousel-indicators {
    display: none;
}

/* ===== DARK SECTIONS (WHO WE SERVE & OUR STORY) ===== */
.valor-dark-section {
    background-color: #1D1A05;
    color: #ffffff;
    padding: 80px 0;
}
 .valor-dark-section a{
    color: #ffffff;
    text-decoration: underline;
 }

.valor-dark-section h2 {
    margin-bottom: 30px;
}

.serve-content {
    padding-right: 40px;
}

.serve-intro, .serve-description, .serve-conclusion {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e8e8e8;
}

.service-list {
    padding: 0;
    margin: 30px 0;
}

.service-list li {
    padding: 8px 0;
    color: #ffffff;
}

.service-list li:before {
    content: "• ";
    color: #ffffff;
    margin-right: 10px;
}

.rest-quote {
    margin-top: 40px;
    padding-top: 30px;
}

.quote-text {
    color: #ffffff;
    margin-bottom: 15px;
}

.quote-description {
    line-height: 1.5;
}

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

.serve-images div {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.serve-images img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== OUR STORY SECTION ===== */
.story-section {
    margin-top: 20px; 
    padding: 60px 0;
    text-align: center;
}

.story-btn {
    background-color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-size: 22px;
    border-radius: 25px;
    color: #1D1A05;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background-color: #c0c0c0;
    color: #1D1A05;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== EXPLORE PROPERTIES SECTION ===== */
.valor-light-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    font-weight: 300;
}

/* Integrated Search Panel Styling */
.property-search-panel {
    background-color: rgba(235, 240, 255, 0.5);
    padding: 40px 30px;
    margin-bottom: 50px;
}

/* Style the search form elements within the panel */
.property-search-panel .form-control,
.property-search-panel input,
.property-search-panel select {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
}

.property-search-panel label {
    font-weight: 600;
    color: #1d1a05;
    margin-bottom: 8px;
    display: block;
}

.property-search-panel button[type="submit"],
.property-search-panel .btn {
    background-color: #1d1a05;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 400;
}

.property-search-panel button[type="submit"]:hover,
.property-search-panel .btn:hover {
    background-color: #134E9D;
}

/* Old property search styling (kept for backwards compatibility) */
.property-search {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.search-field label {
    font-weight: 600;
    color: #1d1a05;
    margin-bottom: 8px;
    display: block;
}

.search-field .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
}

.search-btn {
    background-color: #1d1a05;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    color: #ffffff;
    width: 100%;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #134E9D;
}

.property-grid {
    margin-top: 40px;
}

.property-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ===== HOST WITH US SECTION ===== */
.valor-purple-section {
    background: #EBF0FF;
    padding: 80px 0;
    text-align: center;
}

.valor-purple-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 300;
}

.host-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.host-btn {
    background-color: #333;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.host-btn:hover {
    background-color: #134E9D;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 24px;
    }
    
    .company-name {
        font-size: 32px;
    }
    
    .usa-map-outline {
        width: 250px;
        height: 160px;
    }
    
    .serve-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .serve-images {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .property-search {
        padding: 20px;
    }
    
    .search-field {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .valor-hero {
        padding: 40px 0 60px 0;
    }
    
    .company-name {
        font-size: 28px;
    }
    
    .usa-map-outline {
        width: 200px;
        height: 130px;
    }
    
    .heart-logo {
        width: 50px;
        height: 50px;
    }
    
    .valor-logo {
        max-width: 30px;
        max-height: 30px;
    }
}