/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    z-index: -1;
    overflow: hidden;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: rgba(242, 245, 19, 1);
    border-radius: 50px;
    opacity: 0.4;
    animation: float 20s infinite linear;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(25, 247, 125, 1);
    border-radius: 50px;
}

.cloud1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: -100px;
    animation-duration: 25s;
}

.cloud1:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud1:after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 10px;
}

.cloud2 {
    width: 120px;
    height: 50px;
    top: 40%;
    left: -120px;
    animation-duration: 30s;
    animation-delay: 5s;
}

.cloud2:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud2:after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 15px;
}

.cloud3 {
    width: 80px;
    height: 30px;
    top: 60%;
    left: -80px;
    animation-duration: 20s;
    animation-delay: 10s;
}

.cloud3:before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 8px;
}

.cloud3:after {
    width: 50px;
    height: 50px;
    top: -25px;
    right: 8px;
}

.cloud4 {
    width: 90px;
    height: 35px;
    top: 80%;
    left: -90px;
    animation-duration: 35s;
    animation-delay: 15s;
}

.cloud4:before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 10px;
}

.cloud4:after {
    width: 55px;
    height: 55px;
    top: -27px;
    right: 10px;
}

.cloud5 {
    width: 110px;
    height: 45px;
    top: 30%;
    left: -110px;
    animation-duration: 28s;
    animation-delay: 8s;
}

.cloud5:before {
    width: 55px;
    height: 55px;
    top: -27px;
    left: 12px;
}

.cloud5:after {
    width: 65px;
    height: 65px;
    top: -32px;
    right: 12px;
}

@keyframes float {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

/* Navigation */
.navbar {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513 !important;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #8B4513 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #8B4513;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.gradient-text {
    background: linear-gradient(45deg, #8B4513, #556B2F, #696969);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #8B4513, #556B2F);
    border: none;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.6);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 6s ease-in-out infinite;
}

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

.profile-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid rgba(139, 69, 19, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
    border-color: #8B4513;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.about-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #ecf0f1;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #8B4513;
    color: white;
    transform: translateX(10px);
}

.detail-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #8B4513;
    transition: all 0.3s ease;
}

.detail-item:hover i {
    color: white;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.8), rgba(85, 107, 47, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-info h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Videos Section */
.videos-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 69, 19, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    opacity: 1;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.video-info p {
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Music Section */
.music-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.music-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.music-cover {
    position: relative;
    overflow: hidden;
}

.music-cover img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.music-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.music-card:hover .music-overlay {
    opacity: 1;
}

.music-card:hover .music-cover img {
    transform: scale(1.1);
}

.music-overlay i {
    font-size: 3rem;
    color: white;
}

.music-info {
    padding: 1.5rem;
}

.music-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.music-info p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.music-controls .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, #8B4513, #556B2F);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.music-controls .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-timeline {
    position: relative;
}

.news-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #8B4513, #556B2F);
    transform: translateX(-50%);
}

.news-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.news-item:nth-child(odd) {
    flex-direction: row;
}

.news-item:nth-child(even) {
    flex-direction: row-reverse;
}

.news-date {
    background: linear-gradient(45deg, #8B4513, #556B2F);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.news-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    transition: all 0.3s ease;
}

.news-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-content h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.news-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #95a5a6;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta i {
    color: #8B4513;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.community-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.community-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8B4513, #556B2F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.1) rotate(360deg);
}

.community-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.community-card p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.community-card .btn {
    background: linear-gradient(45deg, #8B4513, #556B2F);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.community-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
    color: white;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer p {
    color: #bdc3c7;
    line-height: 1.6;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #556B2F;
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #8B4513;
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #8B4513;
}

.footer hr {
    border-color: #34495e;
    margin: 2rem 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .news-timeline::before {
        left: 20px;
    }
    
    .news-item {
        flex-direction: column !important;
        text-align: left;
    }
    
    .news-date {
        align-self: flex-start;
        margin-bottom: 1rem;
    }
    
    .news-content {
        margin: 0;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .gallery-item img,
    .video-thumbnail img {
        height: 200px;
    }
    
    .music-cover img {
        height: 250px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #8B4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 