/* Color Variables */
:root {
    --bg-color: #1d0f13;
    --primary-color: #cf88a4;
    --secondary-color: #fce6e6;
    --accent-color: #ecb3a1;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: rgba(29, 15, 19, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(207, 136, 164, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(207, 136, 164, 0.6);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-horse,
.floating-star,
.floating-heart {
    position: absolute;
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-horse {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-star {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-heart {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(207, 136, 164, 0.1) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(207, 136, 164, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(207, 136, 164, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--secondary-color);
    line-height: 1.8;
}

/* Members Section */
.members {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member-card {
    background: linear-gradient(135deg, rgba(207, 136, 164, 0.15), rgba(236, 179, 161, 0.15));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(207, 136, 164, 0.3);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.member-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-info {
    color: var(--secondary-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Events Section */
.events {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(236, 179, 161, 0.1) 100%);
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(207, 136, 164, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
    background: rgba(207, 136, 164, 0.2);
}

.event-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
    padding: 1rem;
    background: rgba(207, 136, 164, 0.2);
    border-radius: 10px;
}

.event-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.event-time {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    background: rgba(207, 136, 164, 0.1);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(207, 136, 164, 0.2);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(29, 15, 19, 0.8);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.footer p {
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.footer-note {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(29, 15, 19, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-item {
        flex-direction: column;
        gap: 1rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }
}