/* Custom Styles for Coach Vennekold Website */

:root {
    --color-primary: #c4622d;
    --color-primary-dark: #a84f22;
    --color-dark: #1c1917;
    --color-light: #f3ede4;
}

/* Smooth Transitions */
* {
    scroll-behavior: smooth;
}

/* Typography */
body {
    font-family: 'Work Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    letter-spacing: -0.01em;
}

/* Buttons */
button, a[class*="btn"], input[type="submit"] {
    transition: all 0.3s ease;
}

button:hover, a[class*="btn"]:hover, input[type="submit"]:hover {
    transform: translateY(-2px);
}

/* Custom Link Styling */
a {
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

/* Form Styles */
input, textarea, select {
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.15);
}

/* Cards */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(28, 25, 23, 0.12);
}

.image-hover-zoom {
    overflow: hidden;
}

.image-hover-zoom img {
    transition: transform 0.4s ease;
}

.image-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Eyebrow label - tracked uppercase kicker above headlines */
.eyebrow {
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Section number - editorial numeral marker before section headings */
.section-number {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-primary);
}

.section-number::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: currentColor;
    margin-top: 0.5rem;
    opacity: 0.5;
}

/* Social rail - fixed social icons along the left edge */
.social-rail {
    position: fixed;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.social-rail a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: rgba(250, 247, 242, 0.92);
    box-shadow: 0 2px 8px rgba(28, 25, 23, 0.15);
    color: var(--color-dark);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-rail a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .social-rail {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.9), rgba(196, 98, 45, 0.1));
    z-index: 0;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    nav, footer, .no-print {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
