/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Card hover effects */
.discipline-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.discipline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(61,79,95,0.2);
}

/* About year badge positioning */
.about-year-badge {
    bottom: -20px;
    right: -20px;
}
@media (max-width: 768px) {
    .about-year-badge {
        position: static !important;
        margin-top: 16px;
    }
}

/* Button hover effects */
.gb-button {
    transition: all 0.3s ease;
}
.gb-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,168,83,0.3);
}

/* Font families */
h1, h2, h3, .hero-title {
    font-family: 'Playfair Display', serif;
}