:root {
    --cream: #f5f3ed;
    --pink: #e8b4b8;
    --peach: #f4d8c9;
    --sage: #c4d4d0;
    --dark-text: #2c2c2c;
    --light-text: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: #ffffff;
    line-height: 1.7;
}

/* Header Styles */
.header-section {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    max-width: 280px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.social-icons {
    gap: 15px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.btn-login {
    background-color: var(--cream);
    border: 1px solid var(--sage);
    padding: 8px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--sage);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Navigation Styles */
.navbar {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bg-cream {
    background-color: var(--cream);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 12px 20px;
    color: var(--dark-text);
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--peach));
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--pink);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, #ffffff 100%);
    padding: 60px 0;
}

.hero-section h1 {
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light-text);
    font-weight: 300;
}

/* Content Section */
.content-section {
    background-color: #ffffff;
}

.content-box {
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.content-box p {
    margin-bottom: 15px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* Info Highlights */
.info-highlights {
    padding: 40px 0;
}

.info-card {
    background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
    color: var(--dark-text);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink);
    margin: 20px 0;
}

.availability h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.availability ul {
    list-style-type: none;
    padding: 0;
}

.availability ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.availability ul li:last-child {
    border-bottom: none;
}

/* Contact Info */
.contact-info {
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-info a:hover {
    color: var(--peach);
    border-bottom: 2px solid var(--peach);
}

/* Image Section */
.image-section img {
    max-width: 100%;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-section img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Footer */
.footer-section {
    background-color: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--light-text);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.slide-up:nth-child(1) { animation-delay: 0.1s; }
.slide-up:nth-child(2) { animation-delay: 0.2s; }
.slide-up:nth-child(3) { animation-delay: 0.3s; }
.slide-up:nth-child(4) { animation-delay: 0.4s; }
.slide-up:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .price-tag {
        font-size: 2rem;
    }
}


/* Добавьте эти стили к существующему файлу styles.css */

/* Hero Home Section */
.hero-home {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content h1 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.fade-in-delay {
    animation: fadeIn 1.5s ease-out 0.5s backwards;
}

/* Section Styling */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--peach), var(--sage));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-top: 15px;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 50%, var(--sage) 100%);
    padding: 80px 0;
}

.rounded-custom {
    border-radius: 20px;
}

.quote-box {
    padding: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--pink);
    font-family: Georgia, serif;
}

.quote-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    text-align: right;
}

/* Offerings Section */
.offerings-section {
    background-color: #ffffff;
}

.offering-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.offering-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.offering-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.offering-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offering-card:hover .offering-image {
    transform: scale(1.1);
}

.offering-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--pink);
}

.offering-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.offering-details {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--cream);
}

.highlight-text {
    color: var(--pink);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--pink);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-left-color: var(--peach);
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-author {
    font-weight: 700;
    color: var(--pink);
    text-align: right;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%);
}

.contact-info-box {
    padding: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-detail {
    padding: 10px 0;
}

.contact-detail a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-detail a:hover {
    color: var(--peach);
    border-bottom: 2px solid var(--peach);
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link-large {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link-large img {
    width: 36px;
    height: 36px;
}

.social-link-large:hover {
    transform: translateY(-5px) scale(1.1);
}

.contact-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.contact-image-wrapper img {
    transition: transform 0.5s ease;
}

.contact-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments for Home Page */
@media (max-width: 992px) {
    .hero-home {
        height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .quote-text {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-home {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .quote-box {
        padding: 25px;
    }
    
    .quote-text {
        font-size: 1.2rem;
        padding-left: 20px;
    }
    
    .offering-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Additional Animation Effects */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offering-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out;
}

.offering-card:nth-child(2) {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.offering-card:nth-child(3) {
    animation: slideInRight 0.8s ease-out 0.4s backwards;
}

.testimonial-card:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.1s backwards;
}

.testimonial-card:nth-child(2) {
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.testimonial-card:nth-child(3) {
    animation: slideUp 0.8s ease-out 0.5s backwards;
}



/* Online Tutorials Page Styles */

/* Intro and Info Boxes */
.intro-box {
    padding: 40px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.intro-box:hover {
    transform: translateY(-5px);
}

.intro-box .lead {
    color: var(--dark-text);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.info-box {
    padding: 35px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.info-box p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
    transition: all 0.4s ease;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.6);
    background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
    color: #ffffff;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.review-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .review-image {
    transform: scale(1.15);
}

.review-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-header {
    border-bottom: 2px solid var(--cream);
    padding-bottom: 15px;
}

.review-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.review-date {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.review-stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.review-course {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.review-course a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.review-course a:hover {
    color: var(--peach);
    border-bottom: 2px solid var(--peach);
}

.review-text {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Staggered Animation for Review Cards */
.review-card:nth-child(1) {
    animation: slideUp 0.8s ease-out 0.1s backwards;
}

.review-card:nth-child(2) {
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.review-card:nth-child(3) {
    animation: slideUp 0.8s ease-out 0.5s backwards;
}

/* Responsive Design for Online Tutorials */
@media (max-width: 992px) {
    .intro-box, .info-box {
        padding: 30px;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
    
    .review-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .intro-box, .info-box {
        padding: 25px;
    }
    
    .intro-box .lead {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 14px 30px;
    }
    
    .review-card {
        margin-bottom: 30px;
    }
    
    .review-image-wrapper {
        height: 220px;
    }
    
    .review-content {
        padding: 25px;
    }
    
    .review-name {
        font-size: 1.3rem;
    }
}

/* Special Effects */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button:hover {
    animation: pulse 1s ease-in-out infinite;
}

/* Glow Effect for Stars */
.review-stars {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Smooth Card Transitions */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pink), var(--peach), var(--sage));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}


/* Contact Page Styles */

.contact-main-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--cream) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.contact-info-item {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255,255,255,1);
    transform: translateX(10px);
}

.info-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .info-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.info-icon {
    color: #ffffff;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.info-text {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin: 0;
}

.info-text a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.info-text a:hover {
    color: var(--peach);
    border-bottom: 2px solid var(--peach);
}

/* Social Section on Contact Page */
.social-section {
    padding-top: 30px;
    border-top: 2px solid var(--cream);
}

.social-links-large {
    display: flex;
    gap: 25px;
}

.social-links-large .social-link-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.4);
}

.social-links-large .social-link-large:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.6);
}

.social-links-large .social-link-large img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

/* Map and Image Wrapper */
.map-image-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.map-container iframe


/* Events Page Styles */

.events-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

/* Event Cards */
.event-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.event-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image {
    transform: scale(1.15) rotate(2deg);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-badge {
    background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.5);
}

/* Event Content */
.event-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.event-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--peach));
    border-radius: 2px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 1rem;
}

.event-detail-item svg {
    color: var(--pink);
    flex-shrink: 0;
}

.event-description {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Event Details Button */
.btn-event-details {
    background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%);
    border




