/* Custom styles for Protevotiv Landing Page */

/* 1. Theme Variables & Base Setup */
:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #212121;
    --charcoal-dark: #2c2c2c;
    --off-white: #F8F9FA;
    --deep-orange: #E85D04;
    --light-orange: #F48C06;
    --gold-accent: #FFBA08; /* Accent color */
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--charcoal);
    color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* 2. Hero Section */
.hero-bg {
    background-image: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9)), url('../images/oratorical0.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.text-shadow-lg {
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* 3. Call-to-Action Button */
.cta-button {
    background-color: var(--deep-orange);
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 93, 4, 0.25);
}

/* 4. Angled Section Divider */
.section-angle {
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

/* 5. Skill & Testimonial Cards */
.skill-card {
    background-color: var(--charcoal-dark);
    padding: 2rem;
    border-radius: 0.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    border-bottom: 3px solid transparent;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-bottom-color: var(--deep-orange);
}

.skill-card h3 {
    color: var(--gold-accent);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.testimonial-card {
    background-color: var(--charcoal);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--deep-orange);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1.125rem;
}

.testimonial-card cite {
    font-weight: bold;
    color: var(--gold-accent);
    font-style: normal;
}

/* 6. Form Styling */
.form-input {
    background-color: var(--charcoal-dark);
    border: 1px solid #4a4a4a;
    color: var(--off-white);
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--deep-orange);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.3);
}

/* 7. Footer */
.footer-link {
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--deep-orange);
}

/* 8. Utility Classes */
.bg-charcoal { background-color: var(--charcoal); }
.bg-charcoal-light { background-color: var(--charcoal-light); }
.bg-charcoal-dark { background-color: var(--charcoal-dark); }
.text-deep-orange { color: var(--deep-orange); }
