/*
Theme Name: Faith Visions Theme
Theme URI: https://example.com/
Author: Your Name
Description: Custom photography & videography layout boilerplate.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: faithvisions
*/

:root {
    --bg-dark: #121212;
    --bg-light: #f8f6f0;
    --accent-gold: #c68a4c;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --white: #ffffff;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --header-font: "Playfair Display";
    --secondary-font: "Oswald";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, .faith-text{
  font-family: var(--header-font);
}

.faith-secondary-text{
  font-family: var(--secondary-font);
}

.font-faith-gold{
  color: var(--accent-gold) !important;
}

/* Base Layout Helpers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #a8723a;
}

.btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

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

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(248,246,240,1) 40%, rgba(248,246,240,0.2) 100%), 
                url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    padding-top: 100px;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    color: var(--accent-gold);
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Caption Overlay */

.caption-overlay{
  background: none !important;
}

/* Section Title Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin: 10px auto 0;
}

/* Services Grid */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-dark);
    color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #ccc;
}

.service-card li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

/* CTA Banner */
.cta-banner {
    background: var(--bg-dark);
    color: var(--white);
    padding: 40px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 0px 0 20px;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
}


/* Hero */

.slideshow{
  background-repeat: no-repeat;
  background-color: rgb(0,0,0);
  background-image: url("img/home-bg.jpeg");
}
