@tailwind base;
@tailwind components;
@tailwind utilities;


:root {
    --sienna: hsla(14, 97%, 28%, 1);
    --sunset: hsla(39, 67%, 72%, 1);
    --black-bean: hsla(13, 61%, 14%, 1);
    --dark-goldenrod: hsla(37, 78%, 41%, 1);

    --clr-primary: hsla(14, 97%, 28%, 1);
    --clr-secondary: hsla(39, 67%, 72%, 1);
    --clr-accent: hsla(13, 61%, 14%, 1);
    --clr-light: hsl(60, 100%, 97%);
    --clr-dark: hsl(0, 0%, 10%);
    --white: #fff;
}


html {
    scroll-padding-top: 3rem;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}


/* Tailwind Color Overrides */
.container{
    @media(min-width: 768px){
        max-width: 1024px!important;
    }
}
.bg-primary {
    background-color: var(--clr-primary);
}

.bg-secondary {
    background-color: var(--clr-secondary);
}

.bg-accent {
    background-color: var(--clr-accent);
}

.bg-light {
    background-color: var(--clr-light);
}

.bg-dark {
    background-color: var(--clr-dark);
}

.text-primary {
    color: var(--clr-primary);
}

.text-secondary {
    color: var(--clr-secondary);
}

.text-accent {
    color: var(--clr-accent);
}

.text-light {
    color: var(--clr-light);
}

.text-dark {
    color: var(--clr-dark);
}


/* Base Button */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
}

/* Primary Button */
.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-light);
}

.btn-primary:hover {
    background-color: var(--clr-accent);
}

.btn-primary:focus {
    outline: 2px solid var(--clr-secondary);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--clr-secondary);
    color: var(--clr-dark);
}

.btn-secondary:hover {
    background-color: var(--clr-primary);
    color: var(--clr-light);
}

.btn-secondary:focus {
    outline: 2px solid var(--clr-accent);
}

/* Accent Button */
.btn-accent {
    background-color: var(--clr-accent);
    color: var(--clr-light);
}

.btn-accent:hover {
    background-color: var(--clr-primary);
}

.btn-accent:focus {
    outline: 2px solid var(--clr-secondary);
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-light);
}

.btn-outline:focus {
    outline: 2px solid var(--clr-secondary);
}

/* Light Button */
.btn-light {
    background-color: var(--clr-light);
    color: var(--clr-dark);
    border: 1px solid var(--clr-dark);
}

.btn-light:hover {
    background-color: var(--clr-secondary);
}

.btn-light:focus {
    outline: 2px solid var(--clr-primary);
}

/* Dark Button */
.btn-dark {
    background-color: var(--clr-dark);
    color: var(--clr-light);
}

.btn-dark:hover {
    background-color: var(--clr-primary);
}

.btn-dark:focus {
    outline: 2px solid var(--clr-secondary);
}


.text-gradient {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 4px rgba(16, 16, 16, 0.3); /* Adjust values as needed */  

}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease-in-out, background 0.3s ease-in-out;
}

/* Scroll Animation - Hide on scroll down */
.navbar-hidden {
    transform: translateY(-100%);
}

/* When scrolled up beyond first section, change background */
.navbar-scrolled {
    /* background: var(--clr-primary) !important;
    backdrop-filter: blur(10px); */

    background: rgba(143, 36, 2, 0.5) !important;
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important; */
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */

    /* .text-gradient {
        background: linear-gradient(90deg, var(--clr-dark), var(--clr-primary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-link,
    .nav-link--dropdown {
        color: var(--clr-dark);
    } */
}

/* Menu Item Hover Effect */
.nav-link,
.nav-link--dropdown {
    color: var(--clr-light);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease-in-out;

}

.dropdown-menu--list {
    background-color: var(--clr-secondary);
    z-index: 10;
    border: 1px solid --clr-light;

    @media(min-width:768px) {
        background-color: hsla(13, 61%, 14%, 0.9);
        border: none;
    }
}

.nav-link:hover {
    color: var(--clr-secondary);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-secondary);
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

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

.dropdown-menu {
    transition: all 700ms ease-in-out;

    &:hover {
        background-color: var(--clr-secondary);
        color: var(--clr-accent);
    }

}

/* Mobile Menu Open (Full-Screen) */
.menu-open {
    transform: translateX(0) !important;
}

/* Hide Close Icon by Default */
.hidden {
    display: none;
}

/* navbar ends */





/* Hero Text Styling */
.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    /* Responsive size between 4rem - 8rem */
    font-weight: 900;
    /* Extra bold */
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    /* Responsive size between 1.2rem - 2rem */
    font-weight: 600;
}

#artiste {

    .img1 {
        border-radius: 50%;
        filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
        filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.7));
        /* Increased offset and blur */

        width: 90%;

        @media(min-width: 768px) {
            width: 400px;

        }

    }
}

.performance {
    background: url(assets/images/Apaharana_production/Apaharana_production-4.jpg) no-repeat fixed center / cover;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}




/* creative excellence bkob shaped cards */
.bg-secondary--gradient {
    background: linear-gradient(315deg, #d0b179, #f7d38f);
    background: var(--clr-secondary);

}

.blob-card {
    /* min-width: 280px;
    max-width: 320px; */
    padding: 1.5rem;
    border-radius: 50px;


    background: #e7c586;
    box-shadow: inset -20px -20px 60px #b99e6b,
        inset 20px 20px 60px #ffeca1;

    text-align: center;
    /* opacity: 0.5; */
    transition: transform 0.3s ease-in-out;

    &:hover {
        transform: scale(1.05);

    }
}




/* beyond dance */

.beyond-dance {
    max-width: 800px;
    margin: 50px auto;
    padding: 2rem;
    background: #fdf7e6;
    /* Soft beige for a warm, elegant feel */
    border-radius: 20px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.beyond-dance h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #6b3e26;
    /* Deep brown for an artistic feel */
    margin-bottom: 1rem;
}

.beyond-dance p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a3b2b;
    margin-bottom: 1rem;
}

.beyond-dance blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #a0673a;
    margin-top: 1.5rem;
    padding: 1rem;
    border-left: 4px solid #a0673a;
    display: inline-block;
}

.beyond-dance blockquote span {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #6b3e26;
    margin-top: 0.5rem;
}

/* media  */
#media-articles {
    .break-inside {
        /* width: 400px; */
        cursor: pointer;

        @media(min-width:768px) {
            width: 400px;
        }
    }

    img {

        transition: transform 0.3s ease-in-out;

        &:hover {
            transform: scale(1.05);
        }
    }
}

/* GSAP Animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}




/* video section */
#videos {
    text-align: center;
    background: var(--clr-light);
    /* background: var(--clr-accent) url(assets/images/Apaharana_production/Apaharana_production-3.jpg) no-repeat center center fixed; */
    /* background-size: cover; */
    /* background-blend-mode: overlay; */
    /* padding: 40px 20px; */

    h2 {
        color: var(--clr-primary);
    }



    .video-grid {

        /* display: flex; */
        /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
        /* gap: 15px;
        justify-content: center; */
        .video-card-container {
            flex: 0 1 22%;

            .video-card {
                position: relative;
                overflow: hidden;
                border-radius: 10px;
                cursor: pointer;
                transition: transform 0.3s ease-in-out;
                height: 70%;

                /* object-fit: cover; */
                &:hover {
                    transform: scale(1.05);
                }

                img {
                    width: 100%;
                    border-radius: 10px;
                    transition: 0.3s ease-in-out;
                    height: 100%;
                    object-fit: cover;
                }

                .play-overlay {

                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);

                    img {
                        width: 50px;
                    }
                }


                /* &:hover .play-overlay {
            opacity: 1;
        } */
            }
        }
    }

    /* Lightbox for Video */
    .lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;

        iframe {
            width: 80%;
            height: 60%;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: var(--clr-light);
            cursor: pointer;
        }
    }

    .hidden {
        display: none;
    }
}

/* form */
/* input::placeholder,
textarea::placeholder {
  opacity: 0!important;
  transition: opacity 0.2s ease-in-out;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 1!important;
} */

.peer:placeholder-shown + label {
    top: 50%;
    font-size: 1rem; /* Default size */
    transform: translateY(-50%);
  }
  
  .peer:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.875rem; /* Smaller floating label */
    color: #facc15; /* Yellow */
  }
  

