:root {
    --primary-color: #ff4500;
    --dark-bg: #0b1120;
    --text-color: #ffffff;
    --section-color: #1c1c1c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Fix for sections being hidden behind the sticky header */
#home,
#about,
#services,
#contact {
    scroll-margin-top: 120px; /* Increase if your header is taller */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
}


header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--section-color);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .logo img {
        height: 60px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    }

.logo-text h1 {
    margin: 0;
    font-size: 32px;
}

.logo-text p {
    margin: 0;
    font-size: 12px;
    color: #d16a44;
}

/* Desktop nav */
nav {
    display: flex;
    gap: 20px;
}

    nav a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
        padding: 5px 10px;
        border-radius: 5px;
    }

        nav a:hover,
        nav a.active {
            background-color: var(--primary-color);
            color: #fff;
        }

/* Hamburger icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background-color: white;
        margin: 4px 0;
        transition: all 0.3s;
    }

/* Mobile nav menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--section-color);
    z-index: 998;
}

    .mobile-nav a {
        padding: 10px 20px;
        border-top: 1px solid #333;
        text-decoration: none;
        color: white;
    }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            background-color: var(--primary-color);
            color: white;
        }

/* Responsive rules */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    header.active .mobile-nav {
        display: flex;
    }

    .logo {
        flex: 1;
    }

    .menu-toggle {
        align-self: flex-end;
    }
}


.hero {
    background: linear-gradient(135deg, #ff4500, #1c1c1c);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 40px;
    min-height: 350px;
}

.hero-overlay {
    flex: 1 1 50%;
    padding-right: 30px;
}

    .hero-overlay h2 {
        font-size: 42px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 15px;
        color: #ccc;
    }

    .hero-overlay p {
        font-size: 18px;
        color: #e8bdbd;
        font-weight: 400;
        text-align: center;
    }

.hero-image {
    flex: 1 1 50%;
    text-align: right;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
        max-height: 300px;
        border-radius: 10px;
    }

    .hero-overlay h2,
    .hero-overlay p,
    .hero-image img {
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}


section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 20px auto;
    background: var(--section-color);
    border-radius: 15px;
}

    section h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 30px;
        color: var(--primary-color);
    }

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.service {
    flex: 1 1 300px;
    text-align: center;
    background: #2b2b2b;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    }

    .service h3 {
        color: var(--primary-color);
        margin-top: 15px;
        margin-bottom: 10px;
    }

#contact p {
    text-align: left;
    font-size: 18px;
    margin: 10px 0;
}

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}
/* Floating contact Bar - right */
.clean-contect-bar {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    z-index: 9999;
    animation: slideInRight 0.6s ease forwards;
}

    .clean-contect-bar a {
        font-size: 22px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        background-color: #ff4500;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .clean-contect-bar a:hover {
            transform: scale(1.2);
            box-shadow: 0 0 12px rgba(0,0,0,0.25);
        }

.whatsapp {
    color: white;
}

.contact-icon {
    color: white;
}

@keyframes slideInRight {
    from {
        right: -60px;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

/* Floating Social Bar - left */
.clean-social-bar {
    position: fixed;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    z-index: 9999;
    animation: slideInLeft 0.6s ease forwards;
}

    .clean-social-bar a {
        font-size: 22px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        background-color: #ff4500;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .clean-social-bar a:hover {
            transform: scale(1.2);
            box-shadow: 0 0 12px rgba(0,0,0,0.25);
        }

/* Brand Colors */
.facebook {
    color: #ffffff;
}

.twitter {
    color: #ffffff;
}

.linkedin {
    color: #ffffff;
}


/* Slide-in animation */
@keyframes slideInLeft {
    from {
        left: -60px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

/* Toggle button for mobile */
.social-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: #ff4500;
    color: #ffffff;
    font-size: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Show toggle button only on small screens */
@media (max-width: 768px) {
    .clean-social-bar {
        display: none;
    }

        .clean-social-bar.active {
            display: flex;
        }

    .social-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .clean-contect-bar {
        display: none;
    }

        .clean-contect-bar.active {
            display: flex;
        }

    .social-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-overlay {
        padding: 0;
    }

        .hero-overlay h2 {
            font-size: 28px;
        }

    .hero-image {
        text-align: center;
        margin-top: 20px;
    }

        .hero-image img {
            max-height: 200px;
        }
}


#festivalBanner {
    display: none;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    margin: 10px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

    #festivalBanner button {
        position: absolute;
        right: 10px;
        top: 10px;
        background: none;
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    #festivalBanner {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
