/* Custom Theme Styles for Wenyen Gabriel Site */

:root {
    --primary-color: #000000;
    --secondary-color: #404040;
    --text-light: #ffffff;
    --text-dark: #333333;
    --accent-color: #ffd700;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    color: var(--text-dark);
    padding-top: 76px;
    /* Account for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Contrail One', sans-serif;
}

/* Navbar Smooth Scroll */
.navbar.fixed-top {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/logo.jpeg') center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Background Card */
.background-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-image-wrapper {
    position: relative;
}

.profile-img {
    max-width: 250px;
    border: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Philanthropy Card */
.philanthropy-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
}

/* Card Styles */
.custom-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    background: #1a1a1a;
}

.custom-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.btn-custom {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: #585858;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 0;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Text Improvements */
.lh-lg {
    line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero-section {
        min-height: 60vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .profile-img {
        max-width: 200px;
    }

    section {
        padding: 60px 0;
    }
}