/* Base Styles */
body {
    line-height: 1.6;
    color: #1f2937;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Hero Section Overlay */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.7), rgba(6, 84, 199, 0.9));
    z-index: 1;
}

/* Button Styles */
.btn-primary {
    background-color: #0ea5e9;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: #0ea5e9;
}

/* Responsive Aspect Ratios */
.aspect-ratio-16\/9 {
    aspect-ratio: 16/9;
}

/* Custom Shadows */
.custom-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* WordPress Specific Styles */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.wp-block-image img {
    height: auto;
    max-width: 100%;
}