
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Comfortaa:wght@300;400;500;600;700&family=Marck+Script&family=Pacifico&display=swap');

:root {
    --cream: #FDF8F0;
    --warm-white: #FFFCF5;
    --soft-beige: #F5EDE0;
    --light-sand: #E8DCC8;
    --warm-gray: #C4B9A8;
    --soft-brown: #A08B6D;
    --copper-light: #C4956A;
    --copper-warm: #B8834F;
    --patina-soft: #7BA7A6;
    --patina-light: #A8C5C4;
    --text-dark: #3D3429;
    --text-medium: #5C5346;
    --text-light: #8A7E6B;
    --accent-gold: #D4A574;
}

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

body {
    font-family: 'Comfortaa', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Фантазийные шрифты для заголовков */
.fantasy-title {
    font-family: 'Marck Script', cursive;
    font-weight: 400;
}

.fantasy-accent {
    font-family: 'Caveat', cursive;
    font-weight: 500;
}

.fantasy-logo {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--soft-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--copper-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--copper-warm);
}

/* Navigation - легкая, воздушная */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(196, 149, 106, 0.2);
    transition: all 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--copper-warm);
    text-decoration: none;
    transition: all 0.3s;
}

.logo:hover {
    color: var(--patina-soft);
    transform: rotate(-3deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--patina-soft);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--copper-warm);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section - светлый, воздушный */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--soft-beige) 50%, var(--light-sand) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(196, 149, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(123, 167, 166, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Marck Script', cursive;
    font-size: 5rem;
    color: var(--copper-warm);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--patina-soft);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-location {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 2px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin: 30px 0 40px;
    line-height: 1.8;
    font-weight: 300;
}

/* Decorative frame - легкая, нарисованная рамка */
.artistic-frame {
    border: 2px solid var(--copper-light);
    border-radius: 20px;
    position: relative;
    padding: 50px 40px;
    margin: 20px;
    background: rgba(255, 252, 245, 0.8);
    box-shadow: 
        0 10px 40px rgba(196, 149, 106, 0.1),
        inset 0 0 60px rgba(196, 149, 106, 0.03);
}

.artistic-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(196, 149, 106, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

/* Buttons - мягкие, округлые */
.btn-artistic {
    display: inline-block;
    padding: 16px 45px;
    background: var(--copper-light);
    color: var(--warm-white);
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 149, 106, 0.3);
    letter-spacing: 1px;
}

.btn-artistic:hover {
    background: var(--patina-soft);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 167, 166, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--copper-warm);
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid var(--copper-light);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--copper-light);
    color: var(--warm-white);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Marck Script', cursive;
    font-size: 3.5rem;
    color: var(--copper-warm);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--patina-soft);
    text-align: center;
    margin-bottom: 60px;
}

/* Gallery Grid - легкие карточки */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
    aspect-ratio: 1;
    background: var(--soft-beige);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.gallery-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(196, 149, 106, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(61, 52, 41, 0.85));
    padding: 40px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Marck Script', cursive;
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--light-sand);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Category Cards - мягкие, с тенями */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--warm-white);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(196, 149, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--copper-light), var(--patina-soft));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(196, 149, 106, 0.15);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--copper-light);
    transition: transform 0.3s;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(-5deg);
}

.category-card h3 {
    font-family: 'Marck Script', cursive;
    color: var(--copper-warm);
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--light-sand) 100%);
    border-radius: 30px;
    margin: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    font-family: 'Marck Script', cursive;
    color: var(--copper-warm);
    margin-bottom: 25px;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.contact-item i {
    color: var(--patina-soft);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 167, 166, 0.1);
    border-radius: 50%;
}

.contact-item a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px dashed var(--copper-light);
}

.contact-item a:hover {
    color: var(--copper-warm);
    border-bottom-style: solid;
}

/* Form Styles - мягкие поля */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--copper-warm);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--warm-white);
    border: 2px solid var(--light-sand);
    border-radius: 15px;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--patina-soft);
    box-shadow: 0 0 0 4px rgba(123, 167, 166, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray);
}

/* Footer - легкий */
.footer {
    background: var(--soft-beige);
    padding: 50px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(196, 149, 106, 0.15);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social {
    margin-bottom: 25px;
}

.footer-social a {
    color: var(--copper-light);
    font-size: 1.5rem;
    margin: 0 18px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--patina-soft);
    transform: translateY(-5px) rotate(10deg);
}

.footer p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: var(--copper-warm);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .artistic-frame {
        padding: 30px 20px;
    }
}

/* Decorative elements */
.deco-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper-light), var(--patina-soft), var(--copper-light), transparent);
    margin: 40px auto;
    max-width: 200px;
    border-radius: 2px;
}

.deco-dots {
    text-align: center;
    color: var(--copper-light);
    font-size: 1.5rem;
    letter-spacing: 10px;
    margin: 30px 0;
    opacity: 0.5;
}

/* Floating shapes */
.float-shape {
    position: absolute;
    opacity: 0.08;
    color: var(--copper-light);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Video container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Modal - светлый */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 248, 240, 0.97);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-info {
    text-align: center;
    margin-top: 25px;
}

.modal-info h3 {
    font-family: 'Marck Script', cursive;
    color: var(--copper-warm);
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-info p {
    color: var(--text-light);
    font-size: 1rem;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--copper-warm);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--patina-soft);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--warm-white);
    border: 2px solid var(--copper-light);
    color: var(--copper-warm);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: var(--copper-light);
    color: var(--warm-white);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev { left: -80px; }
.modal-next { right: -80px; }

/* Filter buttons - мягкие */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--warm-white);
    border: 2px solid var(--light-sand);
    color: var(--text-medium);
    cursor: pointer;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 600;
    border-radius: 25px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--copper-light);
    color: var(--warm-white);
    border-color: var(--copper-light);
    box-shadow: 0 5px 15px rgba(196, 149, 106, 0.3);
}

.gallery-item.hidden {
    display: none;
}

/* Admin hint */
.admin-hint {
    background: rgba(123, 167, 166, 0.08);
    border: 2px dashed var(--patina-soft);
    padding: 25px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 20px;
}

.admin-hint h4 {
    font-family: 'Marck Script', cursive;
    color: var(--patina-soft);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.admin-hint code {
    background: var(--warm-white);
    padding: 3px 8px;
    color: var(--copper-warm);
    font-family: monospace;
    border-radius: 5px;
    border: 1px solid var(--light-sand);
}

/* About page styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.artist-photo {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: transform 0.4s;
}

.artist-photo:hover {
    transform: rotate(0deg) scale(1.02);
}

.artist-photo img {
    width: 100%;
    display: block;
}

.artist-info h2 {
    font-family: 'Marck Script', cursive;
    color: var(--copper-warm);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.artist-info p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.skill-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--warm-white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 149, 106, 0.15);
}

.skill-percent {
    font-family: 'Marck Script', cursive;
    font-size: 3rem;
    color: var(--copper-warm);
    margin-bottom: 5px;
}

.skill-name {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Timeline */
.timeline {
    margin-top: 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--copper-light), var(--patina-soft));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    margin-right: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--copper-light);
    border: 4px solid var(--cream);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--copper-light);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -39px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -39px;
    transform: translateY(-50%);
}

.timeline-year {
    font-family: 'Marck Script', cursive;
    color: var(--patina-soft);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 300;
}

/* Contact page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-details {
    padding: 40px;
    background: var(--warm-white);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-details h3 {
    font-family: 'Marck Script', cursive;
    color: var(--copper-warm);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.contact-list i {
    color: var(--patina-soft);
    margin-right: 15px;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 167, 166, 0.1);
    border-radius: 12px;
}

.contact-list a {
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px dashed var(--copper-light);
}

.contact-list a:hover {
    color: var(--copper-warm);
    border-bottom-style: solid;
}

.social-links {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--light-sand);
}

.social-links h4 {
    font-family: 'Marck Script', cursive;
    color: var(--copper-warm);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--soft-beige);
    border-radius: 15px;
    color: var(--copper-warm);
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--copper-light);
    color: var(--warm-white);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(196, 149, 106, 0.3);
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--warm-white);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-form-wrapper h3 {
    font-family: 'Marck Script', cursive;
    color: var(--patina-soft);
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-container {
    margin-top: 60px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(30%) sepia(10%);
}

/* Video page */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-item {
    background: var(--warm-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(196, 149, 106, 0.15);
}

.video-item h3 {
    font-family: 'Marck Script', cursive;
    color: var(--copper-warm);
    margin: 25px 25px 10px;
    font-size: 1.8rem;
}

.video-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 25px;
    font-weight: 300;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    margin: 20px 25px 25px;
    padding-top: 15px;
    border-top: 1px solid var(--light-sand);
    color: var(--warm-gray);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -45px;
        right: auto;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-prev { left: 10px; }
    .modal-next { right: 10px; }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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