/* styles.css */

:root {
    --primary-color: #d2691e;
    --secondary-color: #8b4513;
    --dark-color: #2c1810;
    --light-color: #f5f5dc;
    --accent-color: #ff6347;
    --gradient-1: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    --gradient-2: linear-gradient(135deg, #2c1810 0%, #5d3a1a 100%);
}

* {
    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;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: var(--gradient-2) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.navbar .logo {
    height: 60px;
    transition: transform 0.3s ease;
}

.navbar .logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.btn-donate {
    background: var(--accent-color) !important;
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    margin-left: 1rem;
}

.btn-donate:hover {
    background: #ff4500 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,99,71,0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.squarespace-cdn.com/content/v1/60cb4b8141dd6c06f9356553/1624837970023-Z1B8LEAISHGK9CYE4J1M/FB_IMG_1600351906848.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    margin-top: 76px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210,105,30,0.3) 0%, rgba(139,69,19,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease;
}

.hero-section .lead {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--accent-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #ff4500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,99,71,0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.display-5 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.display-5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Callout Box */
.callout-box {
    background: var(--gradient-1);
    padding: 2rem;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.callout-box:hover {
    transform: translateY(-5px);
}

/* Host Card */
.host-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.host-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Platform Cards */
.platform-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.platform-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.3);
}

.platform-card i {
    color: #fff;
    margin-bottom: 1rem;
}

.platform-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.platform-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

/* Episode Cards */
.episode-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.episode-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.episode-card h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.episode-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* Feature Boxes */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-box i {
    color: var(--primary-color);
}

.feature-box h4 {
    color: var(--dark-color);
    margin: 1rem 0;
}

/* Info Card */
.info-card {
    background: linear-gradient(135deg, #f5f5dc 0%, #ffe4c4 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card h4 {
    color: var(--dark-color);
}

/* Destination Cards */
.destination-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.destination-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.destination-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.destination-header h4 {
    color: var(--dark-color);
    margin: 0;
}

/* Safety Items */
.safety-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.safety-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.safety-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.safety-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.safety-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Safety List */
.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.safety-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.safety-list i {
    font-size: 1.2rem;
}

/* Community Cards */
.community-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.community-card i {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--gradient-2);
    color: #fff;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.social-links a {
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.shadow-lg {
    box-shadow: 0 15px 50px rgba(0,0,0,0.3) !important;
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
        min-height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .navbar .logo {
        height: 50px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
