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

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #443E6F;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.header, .top-header {
    background-color: white;
    color: #443E6F;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 125px;
    width: auto;  
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #443E6F;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
}

.nav-list a:hover {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #443E6F;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content Styles */
.main-content {
    padding: 0;
    min-height: calc(100vh - 200px);
    margin-top: 120px; 
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.welcome-content h1 {
    color: #443E6F;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.welcome-content h2 {
    color: #443E6F;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

/* Social Media Styles */
.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    padding: 0 2rem;
}

.social-button {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.social-button:hover .social-image {
    opacity: 0.8;
}

.facebook-button:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.instagram-button:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}


/* Carousel Styles */
.carousel-section {
    margin: 4rem 0;
    padding: 0 2rem;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.carousel-caption p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #443E6F;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Indicator */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.8);
}
/* Full-width Image Divider */
.image-divider {
    position: relative;
    width: 100%;
    height: 60vh; 
    overflow: hidden;
    margin-bottom: 3rem;
}

.divider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Footer Styles */
.footer {
    background:white;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}
.footer-image {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-image:hover {
    opacity: 1;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
    font-weight: 600;
}

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

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-list a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .logo {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
        border-radius: 0;
    }
    
    .nav-list a:hover {
        background-color: rgba(52, 152, 219, 0.1);
    }
    
    /* Header adjustments */
    .logo {
        height: 60px;
    }
    
    /* Top banner mobile adjustments */
    .nav-list-top {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list-top a {
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
        margin: 0.3rem;
    }
    
    /* Content adjustments */
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-image {
        height: 50px;
    }
    
    .image-divider {
        height: 50vh;
    }
    
    .welcome-content {
        margin: 2rem auto;
        padding: 0 1.5rem;
    }
    
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .welcome-content p {
        font-size: 1rem;
    }
    
    .welcome-content h2 {
        font-size: 1.5rem;
    }
    
    /* Social media mobile adjustments */
    .social-media {
        gap: 1.5rem;
        margin: 1.5rem 0 2rem 0;
        padding: 0 1rem;
    }
    
    .social-image {
        width: 50px;
        height: 50px;
    }
    
    /* Carousel mobile adjustments */
    .carousel-section {
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .carousel-wrapper {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Extra small mobile adjustments */
    .logo {
        height: 50px;
    }
    
    .nav-list a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Top banner for very small screens */
    .nav-list-top {
        gap: 0.3rem;
    }
    
    .nav-list-top a {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
        margin: 0.2rem;
    }
    
    /* Content adjustments */
    
    .image-divider {
        height: 40vh;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .footer-image {
        height: 40px;
    }
    
    .welcome-content {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .welcome-content h1 {
        font-size: 1.8rem;
    }
    
    .welcome-content p {
        font-size: 0.95rem;
    }
    
    .welcome-content h2 {
        font-size: 1.3rem;
    }
    
    /* Social media extra small mobile */
    .social-media {
        gap: 1rem;
        margin: 1rem 0 1.5rem 0;
    }
    
    .social-image {
        width: 45px;
        height: 45px;
    }
    
    /* Carousel extra small mobile */
    .carousel-wrapper {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

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

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-list a,
    .nav-list-top a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px;
    }
    
    /* Better scrolling on mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve image loading */
    .divider-image {
        will-change: transform;
    }
}

/* Loading animation for images */
.logo {
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    .image-divider {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .nav {
        will-change: transform, opacity;
    }
}
