* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

header {
    background: linear-gradient(45deg, #3a4f63 0%, #2c3e50 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(44, 62, 80, 0.15);
    animation: fadeIn 1.2s ease-out;
}

h1 {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.3s forwards;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.showcase-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 62, 80, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.showcase-item:nth-child(1) { animation-delay: 0.5s; }
.showcase-item:nth-child(2) { animation-delay: 0.7s; }
.showcase-item:nth-child(3) { animation-delay: 0.9s; }

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #3a4f63, #2c3e50);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.showcase-item:hover::before {
    transform: scaleX(1);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.12);
    background: linear-gradient(to bottom, white, #f8f9fa);
}

.showcase-item h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    animation: slideInFade 0.8s ease-out 1s forwards;
}

.video-container, .image-container {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.08);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

video, img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1);
}

video:hover, img:hover {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.02);
}

.text-content {
    padding: 1.5rem 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.4s forwards;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
}

.text-content p {
    color: #34495e;
    transition: color 0.4s ease;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.text-content ul {
    list-style-position: inside;
    margin: 1.5rem 0;
}

.text-content li {
    margin: 0.8rem 0;
    color: #34495e;
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.4s ease;
    opacity: 0;
    animation: slideInFade 0.6s ease-out forwards;
    font-size: 1.05rem;
}

.text-content li:nth-child(1) { animation-delay: 1.6s; }
.text-content li:nth-child(2) { animation-delay: 1.8s; }
.text-content li:nth-child(3) { animation-delay: 2.0s; }
.text-content li:nth-child(4) { animation-delay: 2.2s; }

.text-content li:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.text-content li::before {
    content: '•';
    color: #3a4f63;
    font-size: 1.4em;
    position: absolute;
    left: 0;
    transition: transform 0.4s ease;
}

.text-content li:hover::before {
    transform: scale(1.2);
}

footer {
    text-align: center;
    padding: 3rem;
    margin-top: 4rem;
    background: linear-gradient(45deg, #3a4f63 0%, #2c3e50 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(44, 62, 80, 0.15);
    opacity: 0;
    animation: fadeIn 1s ease-out 2.2s forwards;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    header {
        padding: 2rem 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-item {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
} 