/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #e0e0e0; /* Off-white background */
    color: #333; /* Default text color */
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Hidden by default for animation */
    transform: translateY(-30px); /* Initial position for animation */
}

/* Container to align content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Styles */
.logo h1 {
    font-size: 28px;
    color: #ff7f50; /* Sunset Orange */
    margin: 0;
}

/* Navigation Menu */
.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navigation ul li {
    margin-right: 20px;
}

.navigation ul li:last-child {
    margin-right: 0;
}

.navigation ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #333; /* Dark Charcoal */
    transition: color 0.3s ease;
}

.navigation ul li a:hover {
    color: #228b22; /* Forest Green */
}

/* Social Icons */
.social-icons a {
    color: #333; /* Dark Charcoal */
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4682b4; /* Ocean Blue */
}



/* Hero Section Styles */
.hero {
    background-image: url('https://i.pinimg.com/736x/e0/74/36/e074361288fe7e4158dec83127f2eecc.jpg');
    background-size: cover;
    background-position: center;
    object-fit:cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
    padding: 0 20px;
    opacity: 0; /* Hidden by default for animation */
}

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

.hero-subtitle {
   font-family: 'Arial', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}


.marquee {
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    background-color: #e0e0e0; /* Light grey background */
}

.tour-container {
    display: flex;
    animation: marquee 25s linear infinite;
}

.tour-card {
    background-color: #e0e0e0; /* Light grey background */
    border-radius: 50%;
    margin: 0 25px;
    padding: 25px;
    box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff; /* Neumorphic shadows */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.tour-card:hover {
    box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff; /* Neumorphic inset shadows */
    transform: scale(1.05); /* Slight zoom effect */
}

.tour-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover img {
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow for 3D effect */
}

.tour-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #bebebe; /* Neumorphic text shadow */
}

.tour-card p {
    color: #555;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #bebebe; /* Neumorphic text shadow */
}


.cta {
    display: inline-block;
    padding: 8px 16px;
    background-color: #ff7f50;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.cta.secondary {
    background-color: #4682b4;
}

.cta:hover {
    background-color: #ff4500;
}

.tour-card:hover {
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Category-Specific Styles */
.city-tours .tour-card {
    border: 2px solid #ff7f50;
}

.museum-tours .tour-card {
    border: 2px solid #4682b4;
}

.beaches .tour-card {
    border: 2px solid #32cd32;
}

.hiking .tour-card {
    border: 2px solid #8b4513;
}

.cruises .tour-card {
    border: 2px solid #1e90ff;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff7f50; /* Sunset Orange */
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #e96b40;
    transform: scale(1.05);
}


.plan-your-trip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #005082;
}



.tour-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.category {
    width: 100%;
    margin-bottom: 50px;
}

.category h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    color: #005082;
    text-transform: uppercase;
}

.plans {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.plan {
    width: 28%;
    background: #e0e5ec;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 10px 10px 20px #a3b1c6, -10px -10px 20px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 15px 15px 30px #a3b1c6, -15px -15px 30px #ffffff;
}

.plan-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: inset 10px 10px 20px #a3b1c6, inset -10px -10px 20px #ffffff;
    transition: transform 0.3s ease;
}

.plan:hover .plan-icon {
    transform: scale(1.1);
}

.plan-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan:hover .plan-icon img {
    transform: scale(1.1);
}

.plan h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #005082;
}

.plan p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: space-around;
}

.cta-btn {
    padding: 12px 24px;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.book-btn {
    background-color: #ff6b6b;
    color: #fff;
}

.book-btn:hover {
    background-color: #e55656;
    transform: scale(1.05);
}

.schedule-btn {
    background-color: #1dd1a1;
    color: #fff;
}

.schedule-btn:hover {
    background-color: #14b491;
    transform: scale(1.05);
}


/* plan Card */

.plans-section {
    padding: 50px 20px;
    background-color: #e0e0e0;
    text-align: center;
    box-shadow: inset 10px 10px 20px #a3b1c6, inset -10px -10px 20px #ffffff;
}

.plans-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #a3b1c6;
}

.category-section {
    margin-bottom: 50px;
}

.category-section h3 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #a3b1c6;
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-card {
    width: 280px;
    margin: 15px;
    padding: 20px;
    background-color: #e0e5ec;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #a3b1c6, -10px -10px 20px #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.plan-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: inset 10px 10px 20px #a3b1c6, inset -10px -10px 20px #ffffff;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 15px 15px 30px #a3b1c6, -15px -15px 30px #ffffff;
}

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

.plan-info {
    margin-bottom: 15px;
}

.plan-info h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #a3b1c6;
}

.plan-info p {
    font-size: 18px;
    color: #666;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #a3b1c6;
}

.cta {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.2);
}

.cta.secondary {
    background-color: #28a745;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.2);
}

.cta:hover {
    background-color: #0056b3;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.2);
}

.cta.secondary:hover {
    background-color: #218838;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.2);
}



.captured-moment {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    overflow: hidden;
    background: #e0e0e0; /* Light grey background */
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allows images to wrap in multiple rows */
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.image-container {
    flex: 1 1 45%; /* Allows 2 images per row approximately */
    margin: 10px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    background: #e0e0e0; /* Light grey background */
    border-radius: 20px;
    box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff; /* Neumorphic shadows */
    padding: 20px;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container:hover {
    box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff; /* Neumorphic inset shadows */
}

.image-container:hover img {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow for 3D effect */
}

.text-container {
    flex: 1 1 100%; /* Takes full width for text */
    margin-top: 30px;
    text-align: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    background: #e0e0e0; /* Light grey background */
    border-radius: 20px;
    box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff; /* Neumorphic shadows */
    padding: 20px;
}

.text-container h2 {
    font-size: 36px;
    color: #333333; /* Dark Charcoal */
    font-weight: bold;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #bebebe; /* Neumorphic text shadow */
}

.text-container p {
    font-size: 24px;
    color: #333333;
    font-style: italic;
    margin-top: 10px;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #bebebe; /* Neumorphic text shadow */
}

/* Slide-in animation active class */
.active .image-container {
    transform: translateY(0);
    opacity: 1;
}

.active .text-container {
    transform: translateY(0);
    opacity: 1;
}


/* Footer Styles */
.site-footer {
    background-color: #e0e0e0; /* Light grey background */
    padding: 40px 20px;
    color: #333; /* Dark Charcoal text color */
    border-top: 2px solid #d0d0d0; /* Subtle top border */
    text-align: left;
    box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff; /* Neumorphism effect */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h3 {
    color: #001a33; /* Dark Charcoal for headings */
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #ffffff, -1px -1px 2px #bebebe; /* Neumorphism effect */
}

.social-media {
    flex: 1;
    margin-bottom: 20px;
}

.social-icon {
    font-size: 24px;
    color: #666;
    margin-right: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff; /* Neumorphism effect */
    border-radius: 50%;
    padding: 10px;
}

.social-icon:hover {
    transform: scale(1.2); /* Scale-up effect on hover */
    color: #ff7043; /* Sunset Orange */
    box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff; /* Neumorphism effect */
}

.contact-info {
    flex: 1;
    margin-bottom: 20px;
}

.newsletter {
    flex: 1;
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 16px;
    box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff; /* Neumorphism effect */
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #ff7043; /* Sunset Orange */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 4px 4px 8px #bebebe, -4px -4px 8px #ffffff; /* Neumorphism effect */
}

.newsletter button:hover {
    background-color: #e64a19; /* Darker Sunset Orange */
    box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff; /* Neumorphism effect */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

