/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/pangong.jpg?auto=compress&cs=tinysrgb&w=1920') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    gap: 1rem;
    display: flex;
    justify-content: center;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: rotate(45deg);
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.feature-card {
    text-align: center;
    padding: 0rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Tour Cards */
.tour-card {
    text-align: justify;
    padding: 0rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.tour-card:hover {
    transform: translateY(-10px);
}

/* Image Showcase Section */
.image-showcase {
    padding: 0;
    background: #f8f9fa;
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.8));
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    text-align: left;
}

.carousel-caption h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Category Tags */
.category-tags {
    margin-top: 1rem;
}

.category-tags .badge {
    margin-right: 0.5rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
}

.category-tags .badge:last-child {
    margin-right: 0;
}

/* Video 360 Styles */
.video-360 {
    border: none;
    border-radius: 8px 8px 0 0;
}

/* VR Mode Styles */
.video-360.vr-mode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    display: flex;
}

.vr-lens {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vr-lens video,
.vr-lens iframe {
    width: 200%;
    height: 100%;
    position: absolute;
    top: 0;
}

.vr-lens.left {
    border-right: 2px solid #333;
}

.vr-lens.left video,
.vr-lens.left iframe {
    left: 0;
}

.vr-lens.right {
    border-left: 2px solid #333;
}

.vr-lens.right video,
.vr-lens.right iframe {
    left: -100%;
}

.vr-mode-active {
    overflow: hidden;
}

/* VR Controls */
.vr-controls {
    text-align: center;
}

.vr-controls .btn {
    transition: all 0.3s ease;
}

.vr-controls .btn.active {
    background-color: var(--primary-color);
    color: white;
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar{
        background-color: #2c3e50;
    }
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-image {
        height: 150px;
    }

    .carousel-item {
        height: 250px;
    }

    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    padding: 3rem 0;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.footer h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Search Bar Styling */
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
