/* Logo Styling */
.logo img {
    height: 40px;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
}

/* General Setup */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* White background */
    color: #333333;            /* Black text */
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header & Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: #555555;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #000000;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                      url('logo/Faith to Move Mountains.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* General Content Section Styling */
.content-section {
    padding: 6rem 0;
    background-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 4rem 0;
    color: #000000;
}

/* Gallery Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Section */
.about-container {
    max-width: 800px;
    text-align: center;
}
.video-grid figure video {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.video-grid figure video:hover {
  transform: scale(1.03) translateY(-3px);
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}
.about-text p {
    font-size: 1.1rem;
    color: #555555;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    color: #888888;
    font-size: 0.9rem;
    background-color: #ffffff;
}

/* Animation Classes */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Video Section Styling ========== */
.video-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2E7D32;
}
.video-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 300px makes it max 3 on big screens */
  padding: 20px;
}


.video-grid figure {
    margin: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-grid figure:hover {
    transform: scale(1.03);
}

.video-grid video {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}
