/* Promotional Banner Section */
.promo-banner {
    background-color: #ffffff;
    padding: 25px 0;
}

.promo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 24px;
}

.promo-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.promo-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}

.promo-text-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.promo-main-title {
    color: white;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.promo-badge {
    display: inline-block;
    background-color: #16a34a;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.promo-badge-red {
    background-color: #c90f4d;
}

.promo-badge-green {
    background-color: #16a34a;
}

.promo-badge-blue {
    background-color: #0891b2;
}

.promo-bottom {
    padding: 20px 24px;
    background-color: white;
    text-align: center;
}

.promo-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.promo-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments for promo banner */
@media (max-width: 1200px) {
    .promo-container {
        gap: 18px;
        padding: 0 20px;
    }

    .promo-image {
        height: 240px;
    }

    .promo-main-title {
        font-size: 26px;
    }

    .promo-badge {
        font-size: 15px;
        padding: 10px 24px;
    }

    .promo-overlay {
        padding: 28px 20px;
    }
}

@media (max-width: 1024px) {
    .promo-main-title {
        font-size: 24px;
    }

    .promo-image {
        height: 220px;
    }

    .promo-badge {
        font-size: 14px;
        padding: 10px 22px;
    }

    .promo-subtitle {
        font-size: 16px;
    }

    .promo-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 20px 0;
    }

    .promo-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .promo-image {
        height: 240px;
    }

    .promo-main-title {
        font-size: 26px;
    }

    .promo-badge {
        font-size: 15px;
        padding: 10px 24px;
    }

    .promo-overlay {
        padding: 24px 20px;
    }
}

/* Modern Header Styles */
.hero-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 900px;
}

.site-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

.site-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color:#078f44;
    border-radius: 2px;
}

.site-tagline {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding-top: 20px;
}

/* Bounce animation for the arrow */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-header {
        height: 400px;
    }

    .site-logo {
        font-size: 36px;
    }

    .site-tagline {
        font-size: 16px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 10px;
    }

    .search-button {
        border-radius: 0;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-header {
        height: 250px;
    }

    h1 {
        font-size: 16pt;
    }

    h2 {
        font-size: 11pt !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-logo {
        font-size: 14px;
    }

    .site-tagline {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Main content styling */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Introduction section */
.intro-section {
    text-align: center;
    margin: 30px auto 50px;
    max-width: 800px;
}

.intro-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.search-bar {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
}

/* For the 'Discover Your Perfect Escape' section */
.section-title-wrapper {
    text-align: center;
    margin: 40px 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-wrapper::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: rgb(8, 143, 69);
    margin-top: 15px;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

/* Destination cards section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    transition: padding 0.3s;
}

.destination-card:hover .destination-overlay {
    padding-bottom: 20px;
}

.destination-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.destination-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.deals-count {
    font-weight: bold;
    color: #e41c38;
    margin-top: auto;
    font-size: 15px;
}

/* How it works section */
.how-it-works {
    background-color: #f9f9f9;
    padding: 40px 0;
    margin: 40px 0;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.step-card {
    text-align: center;
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #5ab66b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step-desc {
    color: #666;
    line-height: 1.5;
    font-size: 15px;
}

/* Last minute deals section */
.featured-deals {
    margin: 50px 0;
}

.deals-grid {
    margin-top: 30px;
}

/* CTA section */
.cta-section {
    background-color: #f0f7f1;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.cta-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.cta-text {
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: 17px;
}

.cta-btn {
    background-color: #0095ff;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #0080e6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 149, 255, 0.3);
}

/* Testimonial section */
.testimonials {
    margin: 50px 0;
}

.testimonial-slider {
    margin-top: 30px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    gap: 20px;
    padding: 10px 0;
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.testimonial-card {
    scroll-snap-align: start;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #ffb900;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #e0e0e0;
    background-position: center;
    background-size: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    color: #333;
}

.author-location {
    color: #888;
    font-size: 14px;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f8f8;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    color: #444;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.benefit-icon {
    color: #5ab66b;
}

/* Newsletter section */
.newsletter {
    background-color: #43464F;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0 0;
}

.newsletter-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.newsletter-text {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #ddd;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.newsletter-btn {
    background-color: #0095ff;
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #0080e6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .search-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-text {
        font-size: 16px;
    }

    .step-card {
        padding: 20px 15px;
    }
}

@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        border-radius: 4px;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px;
        border-radius: 4px;
    }

    .cta-btn {
        width: 100%;
    }
}

/* Regions Section */
.regions-section {
    padding: 60px 20px;
    background: white;
}

.regions-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.regions-section .section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

.region-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.region-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.region-link:before {
    content: '▸';
    margin-right: 8px;
    font-size: 1rem;
    transition: margin-right 0.2s ease;
}

.region-link:hover {
    color: #0066cc;
}

.region-link:hover:before {
    margin-right: 12px;
}

.county-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 3px 0 3px 20px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.county-link:hover {
    color: #0052a3;
    padding-left: 24px;
}

@media (max-width: 768px) {
    .regions-section {
        padding: 40px 15px;
    }

    .regions-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }

    .region-link {
        font-size: 1.1rem;
    }

    .county-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
