/* Global styles */
body {
    font-family: 'Assistant', sans-serif;
    color: #333;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bodoni Moda', serif;
}

section {
    padding: 80px 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover effects */
.hover-scale:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Button styling */
.btn {
    transition: all 0.3s;
    border-radius: 30px;
    padding: 10px 25px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Timeline styling */
.timeline-container {
    position: relative;
}

.timeline-container:before {
    content: '';
    position: absolute;
    height: 80%;
    width: 3px;
    background: rgba(92, 64, 51, 0.2);
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    z-index: -1;
    display: none;  /* Only show on larger screens */
}

@media (min-width: 992px) {
    .timeline-container:before {
        display: block;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom brown theme colors */
.bg-brown {
    background-color: #5c4033;
}

.text-brown {
    color: #5c4033;
}

.btn-brown {
    background-color: #5c4033;
    color: white;
}

.btn-brown:hover {
    background-color: #4a3328;
    color: white;
}
