/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&family=Anta&family=Audiowide&family=Bruno+Ace+SC&family=Bubblegum+Sans&family=Bubbler+One&family=Bungee+Outline&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Codystar:wght@300;400&family=Dosis:wght@200..800&family=Doto:wght@100..900&family=Goldman:wght@400;700&family=Jura:wght@300..700&family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Michroma&family=Orbitron:wght@400..900&family=Poiret+One&family=Protest+Riot&family=Rationale&family=Rubik+Doodle+Shadow&family=Signika:wght@300..700&family=Tourney:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Zen+Tokyo+Zoo&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu";
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #3498db;
    bottom: -10px;
    left: 25%;
}

.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.btn:hover {
    background-color: transparent;
    color: #3498db;
}

.btn-small {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-small:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(5px);          /* Glass effect */
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
  z-index: 1000;
    transition: all 0.3s ease;
}
nav{
    color: #1a252f;
}

nav a:hover{
    color: #0099ff;
}
header.scrolled {
    padding: 15px 5%;
}

.logo h1 {
    font-size: 1.8rem;
    color: #2c3e50;
}

.logo span {
    color: #3498db;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #3498db;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after{
    width: 100%;
}

#home{
    color: #2980b9;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top: 70px;
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.pexels.com/photos/823696/pexels-photo-823696.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}


body::-webkit-scrollbar {
  display: none; 
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

/* Featured Destinations */
.featured-destinations {
    background-color: white;
}

img{
    object-fit: cover;
    width: 300px;
    height: 450px;
    border-radius: 5px;
}

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

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

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


#dest-1 {
    background-image: url('https://source.unsplash.com/600x400/?bali,indonesia');
}

#dest-2 {
    background-image: url('https://source.unsplash.com/600x400/?santorini,greece');
}

#dest-3 {
    background-image: url('https://source.unsplash.com/600x400/?swiss,alps');
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.destination-info p {
    margin-bottom: 15px;
    color: #7f8c8d;
}

/* Services Section */
.services {
    background-color: #f5f7fa;
}

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

.service-box {
    width: 22%;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-box p {
    color: #7f8c8d;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

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

.testimonial {
    width: 30%;
    padding: 30px;
    background-color: #f5f7fa;
    border-radius: 10px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 5rem;
    color: #3498db;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #7f8c8d;
    font-style: italic;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?travel') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

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

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0 30px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding-top: 60px;
}

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

.footer-section {
    width: 23%;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #3498db;
    bottom: 0;
    left: 0;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #3498db;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-section i {
    margin-right: 10px;
    color: #3498db;
}

.payment-methods i {
    font-size: 2rem;
    margin-right: 15px;
    color: #bdc3c7;
}

.footer-bottom {
    background-color: #1a252f;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .destination-card,
    .testimonial {
        width: 45%;
    }
    
    .service-box {
        width: 45%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .destination-card,
    .testimonial,
    .service-box,
    .footer-section {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: 30px;
    }
}

@media screen and (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}