/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #2a2a2a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.mail-us a {
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mail-us a:hover {
    color: #FFA500;
    transform: translateY(-2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    width: 200px;
    /* height: 50px; */
    /* border-radius: 50%; */
    /* border: 2px solid #FFD700; */
}

/* .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
} */

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.register-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #ffffff !important;
    padding: 0.6rem 1.2rem;
}

.register-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFEB3B);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Banner Styles */
.banner {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.7), rgba(255, 215, 0, 0.3));
    z-index: 2;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
}

.banner-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.highlight {
    color: #FFD700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #ffffff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FFA500, #FFEB3B);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Moving Bar Styles */
.moving-bar {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
}

.moving-content {
    display: flex;
    animation: moveLeft 30s linear infinite;
    white-space: nowrap;
}

.moving-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffffff;
    font-weight: 600;
    padding: 0 2.5rem;
    font-size: 1rem;
}

.moving-item i {
    font-size: 1.2rem;
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gallery Styles */
.gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    opacity: 0.8;
}

/* Carousel Styles */
.carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.carousel-track {
    display: flex;
    animation: slide 20s linear infinite;
    width: calc(200% + 4rem);
}

.carousel-slide {
    flex: 0 0 250px;
    height: 250px;
    margin-right: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer Styles */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FFD700;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #ffffff;
    transform: translateY(-3px);
}

.recent-posts,
.quick-links {
    list-style: none;
}

.recent-posts li,
.quick-links li {
    margin-bottom: 0.75rem;
}

.recent-posts a,
.quick-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.recent-posts a:hover,
.quick-links a:hover {
    color: #FFD700;
    padding-left: 0.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-info i {
    color: #FFD700;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #999999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo img {
        width: 140px;
    }
    
    .nav-list {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(42, 42, 42, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .banner {
        height: 60vh;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    .carousel-slide {
        flex: 0 0 200px;
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-text {
        padding: 1rem;
    }
    
    .logo img {
        width: 120px;
    }
    
    .banner-text h1 {
        font-size: 1.7rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .moving-item {
        padding: 0 1.5rem;
        font-size: 0.9rem;
    }
    
    .carousel-slide {
        flex: 0 0 180px;
        height: 180px;
    }
    
    .banner {
        height: 50vh;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

