/* public/css/style.css - COMPLETE CORRECTED VERSION */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-gradient: linear-gradient(90deg, #FF4D00 0%, #FFA500 20%, #FFE066 40%, #A8D990 60%, #76C7C0 80%, #15C0D6 100%);
    --dark-bg: #2b2b2b;
    --light-text: #ffffff;
    --section-padding: 80px 0;
    --navbar-text-color: #ffffff;              /* Before scroll */
    --navbar-scrolled-text-color: #2b2b2b;    /* After scroll */
    --navbar-scrolled-bg: rgba(255,255,255,0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    font-weight: 300;
    background: var(--primary-gradient);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1px;
    font-weight: 400;
}

body h1 {
    font-weight: 400;
    font-size: 4.2rem;
    font-family: 'Playfair Display', serif;
}

/* Navbar Styles */
#mainNav {
    padding: 15px 0;
    background: transparent;
    transition: all 0.5s ease;
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#mainNav .navbar-brand {
    display: flex;
    align-items: center;
}

#mainNav .navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

#mainNav.scrolled .navbar-brand img {
    height: 40px;
}

#mainNav .nav-link {
    color: var(--navbar-text-color);
    font-weight: 400;
    margin: 0 20px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.5rem;
    text-transform: capitalize;
}

#mainNav.scrolled .nav-link {
    color: var(--navbar-scrolled-text-color);
}

#mainNav .nav-link:hover {
    color: #FF4D00;
}

.navbar-social a {
    color: var(--navbar-scrolled-text-color);
    margin: 0 8px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.navbar-social a:hover {
    color: #FF4D00;
    transform: scale(1.1);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('../images/bg2.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.logo-animation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 {
    background: #ff6b6b;
    animation-delay: 0s;
}

.dot-2 {
    background: #f7931e;
    animation-delay: 0.3s;
}

.dot-3 {
    background: #4facfe;
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero-title {
    font-size: 10rem;
    font-weight: 400;
    letter-spacing: 15px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 8px;
}

/* Section Styles */
.about-section,
.services-section,
.team-section,
.studio-section,
.clients-section,
.work-section,
.terms-section,
.powered-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    position: relative;
    overflow: visible;
}

.section-title {
    text-align: center;
    font-size: 4.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2b2b2b;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #555;
    font-weight: 300;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: #2b2b2b;
    border: none;
    margin: 25px auto 50px;
}

.section-description {
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-align: center;
    color: #333;
    margin-top: 30px;
}

/* Service Cards */
.services-section .row {
    --bs-gutter-x: 0.5rem;
}

.service-card {
    background: #2b2b2b;
    padding: 50px 30px;
    border-radius: 0;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    margin: 0.1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 6rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.service-card p {
    font-size: 1.4rem;
    line-height: 2rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    text-align: left;
    margin: 3rem;
}

/* Quote Section */
.testimonial-section {
    padding: 100px 0;
    background: url('../images/bg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content h3 {
    font-size: 3.6rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
}

/* Team Section */
.contenteam {
    padding-bottom: 10rem;
}

.contenteam p {
    font-size: 1.4rem;
    padding: 0 4rem;
    line-height: 1.7rem;
}

.team-member {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.team-member img {
    width: 100%;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000;
    padding: 7px;
    display: none;
    opacity: 0;
    overflow-y: scroll;
    transition: all 0.5s ease;
    text-align: center;
}

.member-overlay h6 {
    font-size: 1.5rem;
    line-height: 2.4rem;
    margin-top: 50%;
    text-transform: uppercase;
    color: #000;
}

.member-overlay p {
    font-size: 1.5rem;
    padding: 2rem;
    color: #ffffff;
    background-color: #000;
    opacity: 0.5;
    font-weight: 400;
    line-height: 2.5rem;
    margin-bottom: 100px;
}

.team1btn, .team2btn {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #555;
    color: white;
    font-size: 1.2rem;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.social-links {
    font-size: 1.3rem;
    cursor: pointer;
}

.social-links a {
    display: inline-block;
    padding: 3px 7px;
    color: #333;
}

.social-links a:hover {
    text-decoration: none;
    color: #000;
}

/* Studio Section */
#studio p {
    font-size: 1.4rem;
}

#studio .studio-container {
    background-color: #212529;
    max-width: 1030px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#studio .studio-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    row-gap: 2rem;
}

.studio-tab {
    background: #2b2b2b;
    border: none;
    border-radius: 0;
    padding: 25px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.studio-tab:hover,
.studio-tab.active {
    background: #1a1a1a;
    color: #fff;
}

.studio-tab h5 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.studio-tab p {
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.7;
    font-weight: 300;
}

#studio .studio-photo-container {
    background-color: #1c1f23;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#studio img {
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
}

#studio #second, #studio #third {
    display: none;
}

/* Clients Section */
.clients-slider {
    overflow: hidden;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 4rem;
    margin-top: 3rem;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 8rem;
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8rem;
    min-width: 100%;
    animation: scroll-x 40s linear infinite;
}

@keyframes scroll-x {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.client-logo img {
    height: 10rem;
    width: auto;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Work Section */
.workcarousel {
    width: 100%;
}

.workSwiper {
    padding: 50px 0;
    width: 100%;
    max-width: 210px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    background-color: #464758;
}

.work-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
}

.work-card img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.stream-links {
    display: flex;
    justify-content: center;
    column-gap: 28px;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    filter: brightness(1.4);
}

.stream-links a {
    transition: all 0.3s ease;
}

.stream-links a:hover {
    transform: scale(1.15);
}

.fa-spotify {
    color: #1DB954;
}

.fa-apple {
    color: #000000;
}

.fa-youtube {
    color: #FF0000;
}

.swiper-pagination {
    top: 270px !important;
}

/* Terms & Conditions Section */
.terms-section {
    padding: 80px 0;
    background: var(--primary-gradient);
}

.tncsection {
    background-color: white;
    padding: 5rem;
    border-radius: 2rem;
    margin-top: 8rem;
    max-height: 50rem;
    overflow: scroll;
    margin-bottom: 3rem;
}

.tnc {
    font-size: 1.2rem;
    list-style: none;
    padding: 0;
}

.tnc li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.tnc li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF4D00;
    font-weight: bold;
    font-size: 18px;
}

/* Contact Form Styling */

.contact-form-modern .form-floating > label {
    color: #666;
}

.contact-form-modern .form-control {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 15px;
}

.contact-form-modern .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Admin Notification Badges */
.badge {
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 10px;
}

/* Admin Table Styling */
.table-info {
    background-color: #d1ecf1 !important;
}

.table-warning {
    background-color: #fff3cd !important;
}

/* Alert Animations */
.alert {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Book Now Button */
.book-now-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.book-now-btn {
    background: linear-gradient(135deg, #FF4D00, #FFA500);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.book-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 77, 0, 0.6);
    color: #fff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4D00, #FFA500);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 60px 0 0;
}

footer ul {
    list-style-type: none;
    padding: 0;
    line-height: 3.4rem;
}

footer h2 {
    font-weight: 700;
    font-size: 2rem;
}

footer li {
    font-weight: 600;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #FF4D00;
}

.footer-content {
    font-size: 1.3rem;
    padding: 40px 0;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 3rem;
}

.footer-logo {
    width: 155px;
    height: 64px;
}

.footer-menu {
    text-align: left;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2rem;
    font-size: 2rem;
}

.footer-social-icon {
    height: 40px;
    width: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
}

.phone2 {
    background-color: #000000;
    font-size: 2rem;
    color: rgb(255, 255, 255);
}

.facebook {
    background-color: #4267b2;
    font-size: 2rem;
    color: white;
}

.instagram {
    background-color: #e1306c;
    font-size: 2rem;
    color: white;
}

.youtube {
    background-color: #bf0404;
    font-size: 2rem;
    color: white;
}

.map iframe {
    max-width: 56rem;
    height: 30rem;
    width: 100%;
    border-radius: 2rem;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.copyright span {
    color: #999;
}

/* Responsive Design */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
    
    .hero-title {
        font-size: 6rem;
        letter-spacing: 10px;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        letter-spacing: 5px;
    }
    
    .section-title {
        font-size: 3.6rem;
    }
    
    .testimonial-content h3 {
        font-size: 2.4rem;
    }
    
    #studio .studio-buttons {
        display: flex;
        flex-direction: row;
        row-gap: 0;
    }
    
    .footer-menu {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%;
    }
    
    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 575px) {
    .contenteam {
        padding-bottom: 0rem;
    }
    
    #studio .container {
        padding-left: 0;
        padding-right: 0;
    }
}