@charset "UTF-8";

:root {
    --color-dark: #0a192f;
    --color-accent: #dc2626;
    --color-gold: #FBBF24;
    --color-text-dark: #1e293b;
    --color-text-medium: #475569;
    --color-text-light: #f8fafc;
    --color-white: #ffffff;
    --color-light-gray: #f1f5f9;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.bg-brand-dark { background-color: var(--color-dark); }
.text-brand-dark { color: var(--color-dark); }
.bg-brand-accent { background-color: var(--color-accent); }
.text-brand-accent { color: var(--color-accent); }
.border-brand-accent { border-color: var(--color-accent); }
.ring-brand-accent:focus { --tw-ring-color: var(--color-accent); }
.border-brand-accent:focus { border-color: var(--color-accent); }
.bg-brand-gold { background-color: var(--color-gold); }
.text-brand-gold { color: var(--color-gold); }
.border-brand-gold { border-color: var(--color-gold); }
.text-brand-text-dark { color: var(--color-text-dark); }
.text-brand-text-medium { color: var(--color-text-medium); }
.text-brand-text-light { color: var(--color-text-light); }

.nav-link {
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--color-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -10;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.worship-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worship-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.worship-image-container:hover .worship-service-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .worship-image-container {
        height: 180px;
    }
}
