/* Compiled from SCSS */

/* Variables & Base */
:root {
    --theme-red: #C3110C;
    --theme-dark-blue: #1A3263;
    --theme-muted-blue: #547792;
    --theme-very-dark-blue: #25343F;
    --theme-white: #FFFFFF;
    --primary-color: #1A3263;
    --secondary-color: #547792;
    --accent-color: #C3110C;
    --background-dark: #25343F;
    --text-light: #FFFFFF;
    --font-stack: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

a {
    color: #1A3263;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar.bg-dark {
    background-color: #25343F !important;
}

.footer {
    background-color: #25343F;
    color: #FFFFFF;
    padding: 1rem 0;
    text-align: center;
}

/* Components */
.btn-primary {
    background-color: #1A3263;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #122244;
}

.btn-light {
    background-color: #FFFFFF;
    color: #1A3263;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-accent {
    background-color: #C3110C;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #C3110C;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #920d09;
    border-color: #920d09;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card .card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card .card-body {
    padding: 1.5rem;
}

.card .card-body .card-title {
    color: #1A3263;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card .card-body .card-text {
    color: #333;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-fade-in-out {
    0% {
        opacity: 0;
    }

    6.25% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Sections - Hero */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    flex-direction: column;
    padding: 0;
    /* Removed padding as content handles it */
    overflow: hidden;
}

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

.hero-section .hero-slides .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: hero-fade-in-out 16s infinite;

    /* Flex content centering */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.hero-section .hero-slides .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* Above image, below content */
}

/* Specific start times for each slide */
.hero-section .hero-slides .hero-slide:nth-child(1) {
    animation-delay: 0s;
    --slide-delay: 0s;
}

.hero-section .hero-slides .hero-slide:nth-child(2) {
    animation-delay: 4s;
    --slide-delay: 4s;
}

.hero-section .hero-slides .hero-slide:nth-child(3) {
    animation-delay: 8s;
    --slide-delay: 8s;
}

.hero-section .hero-slides .hero-slide:nth-child(4) {
    animation-delay: 12s;
    --slide-delay: 12s;
}

/* No longer needed on parent */
.hero-section::before {
    display: none;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    /* Above overlay */
    max-width: 800px;
}

/* Content Animations */
@keyframes content-slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    3% {
        opacity: 0;
        transform: translateY(50px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    22% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }

    25% {
        opacity: 0;
        transform: translateY(-20px);
        filter: blur(5px);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.hero-section .hero-content h1,
.hero-section .hero-content p,
.hero-section .hero-content .btn {
    opacity: 0;
    /* Start hidden */
    animation: content-slide-up 16s infinite;
    animation-fill-mode: both;
}

.hero-section .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    animation-delay: calc(var(--slide-delay) + 0.5s);
}

.hero-section .hero-content p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation-delay: calc(var(--slide-delay) + 0.8s);
}

.hero-section .hero-content .btn {
    animation-delay: calc(var(--slide-delay) + 1.1s);
}

/* Sections - Features (Why Choose Us) */
.features-section {
    position: relative;
    background-color: #EEEEEE;
    /* Theme Light Gray */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.feature-card {
    background-color: #FFFFFF;
    /* Fallback */
    background-size: cover;
    background-position: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft, premium shadow */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Slower, smoother hover */
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: white;
    /* Default text to white for BG images */
}

/* Overlay for text readability */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Darker overlay */
    z-index: 1;
    transition: all 0.5s ease;
}

.feature-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.5);
    /* Lighten on hover */
}

/* Helper to ensure text sits above overlay */
.card-content {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* Lift and subtle zoom */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.feature-card .icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    /* Glassy background */
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover .icon-wrapper {
    background-color: #C3110C;
    /* Fill with accent color on hover */
    transform: scale(1.1) rotate(5deg);
    /* Playful rotation */
    border-color: #C3110C;
    box-shadow: 0 0 20px rgba(195, 17, 12, 0.5);
    /* Glow */
}

.feature-card .icon-wrapper i {
    font-size: 2.5rem;
    color: #FFFFFF;
    /* White by default on dark bg */
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
    color: #FFFFFF;
    /* Keep white */
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    /* White text */
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: #e0e0e0;
    /* Off-white for description */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mosaic Grid Variance */
.features-section-mosaic {
    background-color: #FFFFFF;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

/* Creating the asymmetrical layout */
.mosaic-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mosaic-card.wide {
    grid-column: span 2;
}

/* Featured styles */
.mosaic-card.featured-gradient {
    background: linear-gradient(135deg, #1A3263 0%, #25343F 100%);
    color: white;
}

.mosaic-card.featured-gradient h3,
.mosaic-card.featured-gradient p {
    color: white;
}

.mosaic-card.featured-gradient .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
}

.mosaic-card.featured-gradient .icon-wrapper i {
    color: #C3110C;
    /* Red accent still pops */
}

/* Image background style */
.mosaic-card.featured-image {
    background-size: cover;
    background-position: center;
    color: white;
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.mosaic-card.featured-image .mosaic-content {
    position: relative;
    z-index: 2;
}

/* General Mosaic Card Styling */
.mosaic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mosaic-content {
    text-align: left;
    /* Align left for modern feel */
}

.mosaic-card .icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    /* Soft square */
    background-color: rgba(195, 17, 12, 0.1);
    margin-bottom: 1.5rem;
}

.mosaic-card .icon-wrapper i {
    font-size: 2rem;
    color: #C3110C;
}

.mosaic-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1A3263;
}

.mosaic-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Dark/Image Specific Overrides */
.text-white h3 {
    color: white;
}

.text-white p {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 992px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
    }

    .mosaic-card.wide {
        grid-column: span 1;
    }
}

/* Advanced About Section */
.blob-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    z-index: 2;
}

.blob-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-pulse 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.blob-image:hover {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: scale(1.02);
}

@keyframes blob-pulse {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: #C3110C;
    top: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background-color: #1A3263;
    bottom: 20px;
    right: 20px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.text-accent {
    color: #C3110C;
}

/* Destinations - Split Layout & Carousel */
.destination-carousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-carousel .carousel-item {
    position: relative;
}

.destination-carousel .carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.destination-carousel .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem !important;
    z-index: 2;
    text-align: left;
}

.destination-carousel .carousel-caption h3 {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.destination-carousel .carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

.destination-carousel .carousel-control-prev,
.destination-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    /* Hide by default, show on hover */
    transition: all 0.3s ease;
}

.destination-carousel:hover .carousel-control-prev,
.destination-carousel:hover .carousel-control-next {
    opacity: 1;
}

.destination-carousel .carousel-control-prev {
    left: 20px;
}

.destination-carousel .carousel-control-next {
    right: 20px;
}

.destination-carousel .carousel-control-prev-icon,
.destination-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    background-size: 50%, 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.destination-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.destination-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #C3110C;
    /* Accent color */
    border-color: #C3110C;
    transform: scale(1.1);
}

/* Base tweaks */
.text-secondary {
    color: #6c757d !important;
}

.opacity-90 {
    opacity: 0.9;
}

/* Wave Footer */
.footer-wave-section {
    background-color: #1A3263;
    /* Theme Dark Blue */
    position: relative;
    color: white;
    z-index: 1;
    /* Ensure footer background stack */
}

/* Ocean Waves Animation */
.ocean-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-100%);
    /* Move above the footer */
    z-index: 1;
    overflow: hidden;
}

.ocean-waves .waves {
    width: 100%;
    height: 100px;
    min-height: 100px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Mobile Polish for Waves */
@media (max-width: 768px) {
    .ocean-waves {
        height: 60px;
        min-height: 60px;
    }

    .ocean-waves .waves {
        height: 60px;
        min-height: 60px;
    }
}

/* Footer Links */
.text-accent-light {
    color: #e2e8f0;
    /* Soft blue-white */
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: block;
    /* Full width hover area */
    backface-visibility: hidden;
    /* Prevent jitter */
}

.footer-links a:hover {
    color: #C3110C;
    /* Red Accent */
    transform: translateX(5px);
}

/* Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #C3110C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(195, 17, 12, 0.4);
}

.contact-info li {
    display: flex;
    align-items: center;
}

/* Modern CTA Section */
/* Dark Minimal CTA Section */
.cta-dark-minimal {
    position: relative;
    padding: 5rem 0;
    /* Compact high-impact spacing */
    background: linear-gradient(135deg, #1A3263 0%, #0b162a 100%);
    overflow: hidden;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(195, 17, 12, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(84, 119, 146, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.cta-dark-minimal .text-secondary-light {
    color: #a8c0d3;
    /* Soft blue-gray for contrast */
}

/* Glow Button (Pulse Effect) */
.btn-glow {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn-glow:hover {
    background: white;
    color: #1A3263;
    border-color: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-glow i {
    transition: transform 0.3s ease;
}

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

.display-5 {
    font-size: 2.5rem;
    /* Adjusted for compactness */
}

@media (max-width: 991px) {
    .cta-dark-minimal {
        padding: 4rem 0;
        text-align: center;
    }

    .cta-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}