/* === GLOBAL STYLES === */
:root {
    --primary: #1a3a6b;
    --primary-light: #2a4f8a;
    --primary-dark: #0d2444;
    --secondary: #e6b85e;
    --secondary-light: #f0d08c;
    --secondary-dark: #d9a037;
    --accent: #8c6d46;
    --light: #f8f5f0;
    --dark: #1a1a1a;
    --text: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
}

.explore-page {
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* === NAVIGATION === */
.navbar {
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(26, 58, 107, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: 40px;
    transition: all 0.5s ease;
}

.navbar.scrolled .navbar-brand .logo {
    height: 35px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

/* === HERO SECTION === */
.explore-hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 58, 107, 0.2), rgba(26, 58, 107, 0.6));
}

.hero-content {
    color: var(--white);
    text-align: center;
    padding-top: 80px;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.search-box button {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background-color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === DESTINATIONS SECTION === */
.destinations-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* transition: all 0.20s ease; */
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);      
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.country-count {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text);
}

.country-count i {
    margin-right: 8px;
    color: var(--secondary);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    color: var(--secondary-dark);
}

.btn-explore:hover i {
    transform: translateX(5px);
}

/* Region-specific colors */
.destination-card.africa .btn-explore:hover {
    color: #8c6d46;
}
.destination-card.asia .btn-explore:hover {
    color: #c45e4c;
}
.destination-card.europe .btn-explore:hover {
    color: #5a8ca6;
}
.destination-card.americas .btn-explore:hover {
    color: #4a7c59;
}
.destination-card.oceania .btn-explore:hover {
    color: #6b8c3e;
}
.destination-card.middle-east .btn-explore:hover {
    color: #7a5a8c;
}

/* === STYLES SECTION === */
.styles-section {
    padding: 100px 0;
    background-color: var(--light);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.style-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* transition: all 0.5s ease; */
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.style-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.style-card:hover .style-icon {
    background-color: var(--primary);
    color: var(--white);
}

.style-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.style-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text);
}

.btn-style {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-style:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Style-specific colors */
.style-card.luxury .style-icon {
    color: #8c6d46;
}
.style-card.luxury:hover .style-icon {
    background-color: #8c6d46;
}
.style-card.luxury .btn-style {
    background-color: #8c6d46;
}
.style-card.luxury .btn-style:hover {
    background-color: #6b5435;
}

.style-card.adventure .style-icon {
    color: #4a7c59;
}
.style-card.adventure:hover .style-icon {
    background-color: #4a7c59;
}
.style-card.adventure .btn-style {
    background-color: #4a7c59;
}
.style-card.adventure .btn-style:hover {
    background-color: #386045;
}

.style-card.family .style-icon {
    color: #5a8ca6;
}
.style-card.family:hover .style-icon {
    background-color: #5a8ca6;
}
.style-card.family .btn-style {
    background-color: #5a8ca6;
}
.style-card.family .btn-style:hover {
    background-color: #457089;
}

.style-card.cultural .style-icon {
    color: #c45e4c;
}
.style-card.cultural:hover .style-icon {
    background-color: #c45e4c;
}
.style-card.cultural .btn-style {
    background-color: #c45e4c;
}
.style-card.cultural .btn-style:hover {
    background-color: #9d4b3d;
}

.style-card.wellness .style-icon {
    color: #6b8c3e;
}
.style-card.wellness:hover .style-icon {
    background-color: #6b8c3e;
}
.style-card.wellness .btn-style {
    background-color: #6b8c3e;
}
.style-card.wellness .btn-style:hover {
    background-color: #526e30;
}

.style-card.budget {

}

/* === COLLECTIONS SECTION === */
.collections-section {
    padding: 100px 0;
    background-color: var(--white);
}

.collections-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.collection-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    scroll-snap-align: start;
    min-width: 300px;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.collection-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.collection-content {
    padding: 20px;
}

.collection-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.collection-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text);
}

.destination-count {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text);
}

.destination-count i {
    margin-right: 8px;
    color: var(--secondary);
}

/* === SEASONAL SECTION === */
.seasonal-section {
    padding: 100px 0;
    background-color: var(--light);
}

.seasonal-tabs {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.tab-btn {
    padding: 8px 20px;
    background: none;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.tab-btn:hover {
    background-color: rgba(26, 58, 107, 0.1);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seasonal-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.seasonal-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.seasonal-card:hover .seasonal-image img {
    transform: scale(1.1);
}

.season-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.seasonal-info {
    padding: 20px;
}

.seasonal-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.seasonal-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text);
}

.seasonal-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.seasonal-meta i {
    margin-right: 5px;
    color: var(--secondary);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === STORIES SECTION === */
.stories-section {
    padding: 100px 0;
    background-color: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.story-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-content {
    padding: 20px;
}

.story-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.story-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text);
}

.story-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-view-all:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* === CTA SECTION === */
.cta-section {
    padding: 100px 0;
    background-color: var(--light);
}

.cta-card {
    background-color: var(--primary);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(26, 58, 107, 0.2);
}

.cta-content {
    flex: 1;
    padding: 60px;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary);
    color: var(--dark);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--white);
    color: var(--dark);
}

.cta-image {
    flex: 1;
    height: 400px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === FOOTER === */
.explore-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 0;
}
.explore-footer h3 {
    color: #fff !important;

}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.footer-links {
    list-style: none;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
}

.newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
}

.newsletter button {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background-color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .cta-card {
        flex-direction: column;
    }
    
    .cta-content {
        padding: 40px;
    }
    
    .cta-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand .logo {
        height: 30px;
    }
    
    .explore-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .search-box input {
        padding: 12px 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}