/* Paradise Island Tours - Custom Styles */

/* Tropical Theme Colors */
:root {
    --primary-blue: #0077b6;
    --primary-light: #00b4d8;
    --sand: #f4e9d9;
    --sand-light: #faf6f0;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-muted: #636e72;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

section {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.25rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.8), rgba(0, 180, 216, 0.6)),
                url('../assets/images/Image 1.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: white;
}

.btn-primary-custom:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* About Section */
.about-section {
    background: var(--sand-light);
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 119, 182, 0.1);
    height: 100%;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.about-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Attractions Grid */
.attractions-section {
    background: white;
}

.attraction-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
}

.attraction-card img {
    height: 200px;
    object-fit: cover;
}

.attraction-card .card-body {
    padding: 25px;
}

.attraction-card h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.attraction-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Best Time to Visit */
.best-time-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    color: white;
}

.best-time-section .section-title {
    color: white;
}

.best-time-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.best-time-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.best-time-card p {
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    background: var(--sand-light);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 119, 182, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 500;
}

/* How to Go Section */
.howto-section {
    background: white;
}

.howto-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
}

.howto-card {
    background: var(--sand-light);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.howto-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.howto-card ul {
    list-style: none;
    padding: 0;
}

.howto-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
    color: var(--text-dark);
}

.howto-card li:last-child {
    border-bottom: none;
}

.howto-card li i {
    color: var(--primary-light);
    margin-right: 10px;
}

/* Map Section */
.map-section {
    background: var(--sand-light);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 119, 182, 0.15);
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-card {
    background: var(--sand-light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.contact-card h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-muted);
    margin: 0;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Messenger Button */
.messenger-btn {
    background: linear-gradient(135deg, #0085fc, #0072ff);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.messenger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 133, 252, 0.4);
    color: white;
}

/* Footer */
.footer {
    background: var(--primary-blue) !important;
}

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

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--primary-light);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .contact-card {
        padding: 25px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--sand-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}