/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* === Scrollbar Styles === */

::-webkit-scrollbar {
    width: 3px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #314b63; 
}

::-webkit-scrollbar-thumb {
    background: #1d8ee8; 
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: yellow; 
    }

/* === Navbar Styles === */
.navbar-custom {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.95), rgba(52, 73, 94, 0.95));
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .navbar-custom.scrolled {
        background: linear-gradient(135deg, rgba(41, 128, 185, 0.98), rgba(52, 73, 94, 0.98));
        padding: 10px 0;
    }

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

    .navbar-brand img {
        height: 55px;
        width: auto;
        border-radius: 12px;
    }

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        transform: translateY(-2px);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background: #f39c12;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
        left: 0;
    }

.navbar-toggler {
    border: none;
    outline: none;
    padding: 0.25rem 0.5rem;
}

    .navbar-toggler i {
        color: white;
        font-size: 1.5rem;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler[aria-expanded="true"] i {
        transform: rotate(90deg);
    }


/* === Hero Section === */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/lahero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

    .btn-hero:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
        background: linear-gradient(135deg, #e67e22, #d35400);
    }

/* === Floating Particles === */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Section Styles === */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 3rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 20px;
        position: relative;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 2px;
        }

    .section-title p {
        font-size: 1.2rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
    }

/* === About Section === */
.about-section {
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .about-image img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        object-fit: cover;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

/* === Stats Section === */
.stats-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f39c12;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Card Styles === */
.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
}

    .card-custom:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    }

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-custom:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-text {
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* === Section Specific Styles === */
.spots-section {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.adventures-section {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
}

.landmarks-section {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: white;
}

.buildings-section {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
}

.stays-section {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
}

.contact-section {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .contact-item i {
        font-size: 1.5rem;
        color: #f39c12;
        margin-right: 20px;
        width: 30px;
    }

/* === Footer Styles === */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 20px;
}

    .footer h5 {
        color: #f39c12;
        margin-bottom: 20px;
        font-weight: bold;
    }

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: #f39c12;
    }

.social-icons a {
    color: #bdc3c7;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        color: #f39c12;
        transform: translateY(-3px);
    }

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Responsive adjustments for the map */
@media (max-width: 991.98px) {
    .col-lg-6 {
        margin-top: 20px;
    }
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }



/* === Book Now Styles === */

.booknow-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
}

.book-form label {
    font-weight: 500;
}

.book-form button {
    background-color: #ff6f61;
    border: none;
    transition: 0.3s ease;
}

    .book-form button:hover {
        background-color: #e85b50;
    }
