@font-face {
    font-family: 'Stadella';
    src: url('../assets/Stadella.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Candara';
    src: url('../assets/Candara Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
}

/* Parallax Effect */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%; /* Extra height for parallax effect */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    transform: translateZ(0);
    will-change: transform;
}

/* Timeline Styling */
.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
}

.timeline-item.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #8E6A8E;
    z-index: 1;
    box-shadow: 0 0 0 rgba(142, 106, 142, 0.4);
    animation: pulse 2s infinite;
}

.timeline-item .timeline-content {
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(1000px) rotateY(0deg);
}

.timeline-item.right {
    flex-direction: row-reverse;
}

.timeline-item.right .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item .timeline-content:hover {
    transform: translateY(-5px) perspective(1000px) rotateY(2deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-item.right .timeline-content:hover {
    transform: translateY(-5px) perspective(1000px) rotateY(-2deg);
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 80%;
}

.carousel-track {
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
}

.carousel-slide {
    flex-shrink: 0;
    width: 400px;
    height: 500px;
    padding: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.carousel-slide.active img {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Form styling */
input, textarea, select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #8E6A8E;
    box-shadow: 0 0 0 3px rgba(142, 106, 142, 0.2);
    transform: translateY(-2px);
}

/* Button and hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Text shadow */
.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-in-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slideUp {
    animation: slideUp 0.8s ease-in-out;
}

@keyframes slideInRight {
    from { 
        transform: translateX(-50px);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from { 
        transform: translateX(50px);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease forwards;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(142, 106, 142, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(142, 106, 142, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(142, 106, 142, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-slow {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(135deg, #8E6A8E, #D4A76A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Empty State Styling */
.empty-state-container {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 30px auto;
    max-width: 500px;
    transition: all 0.3s ease;
}

.empty-state-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.empty-state-icon {
    font-size: 3.5rem;
    color: #8E6A8E;
    margin-bottom: 15px;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.empty-state-message {
    font-family: 'Candara', sans-serif;
    color: #5f4d5f;
    margin-bottom: 15px;
    line-height: 1.5;
}

.empty-state-message h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-state-message p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
    }
    
    .carousel-slide {
        width: 100vw;
        height: 450px;
        padding: 15px 30px;
        box-sizing: border-box;
    }
    
    .carousel-slide img {
        transform: scale(1);
        object-position: center;
    }
    
    .timeline-item::before {
        left: 0;
    }
    
    .timeline-item, .timeline-item.right {
        flex-direction: column;
    }
    
    .timeline-item .timeline-content, .timeline-item.right .timeline-content {
        width: 90%;
        margin-left: 20px;
    }
} 