/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #555555;
    overflow-x: hidden;
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    display: flex;
    align-items: center;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background: #25D366;
    height: 50px;
    width: auto;
    padding: 0 15px 0 15px;
    animation: float 4s ease-in-out infinite;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.whatsapp-text {
    color: white;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Hover Effects */
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-float:hover .whatsapp-icon {
    animation: shake 0.5s ease-in-out;
    transform: scale(1.2);
}

.whatsapp-float:hover .whatsapp-text {
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0) scale(1.2); }
    25% { transform: translateX(-2px) rotate(-5deg) scale(1.2); }
    50% { transform: translateX(2px) rotate(5deg) scale(1.2); }
    75% { transform: translateX(-2px) rotate(-5deg) scale(1.2); }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-5px) scale(1.1); }
    50% { transform: translateY(0) scale(0.95); }
    75% { transform: translateY(-3px) scale(1.05); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gallery Styles */
.gallery {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.gallery-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #004DFF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
    background: #fff;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2002;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #004DFF;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

#lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 0;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    user-select: none;
    z-index: 2001;
    transition: color 0.3s ease;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #004DFF;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Studio Gallery Styles */
.studio-gallery {
    margin-top: 40px;
    padding: 30px 0;
}

.studio-gallery .gallery-grid {
    margin-top: 20px;
}

.studio-gallery-title {
    text-align: center;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.studio-gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #004DFF;
}

/* Adjust gallery grid for studio section */
.studio .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 40px 0;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        height: 48px;
        padding: 0 14px 0 12px !important;
        font-size: 13px;
    }
    
    .whatsapp-icon {
        width: 22px;
        height: 22px;
        margin-right: 6px !important;
    }
    
    .whatsapp-text {
        font-size: 13px !important;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.03) !important;
    }
    
    /* Adjust scroll-to-top button position */
    .scroll-to-top {
        bottom: 75px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #004DFF;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #0039CC;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top i {
    font-size: 20px;
}


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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: #004DFF;
    color: #fff;
}

.btn-primary:hover {
    background: #0039CC;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 77, 255, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #004DFF;
    border: 2px solid #004DFF;
}

.btn-secondary:hover {
    background: #004DFF;
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #004DFF;
}

.btn-white:hover {
    background: #f8f9fc;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #004DFF;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 20px 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: #004DFF;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #004DFF;
    text-decoration: underline;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #555555;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visuals {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero-image-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 20px;
    text-align: center;
}

.image-overlay h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* About Section */
.about {
    background: #004DFF;
    color: #fff;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.about-features {
    list-style: none;
    margin-bottom: 40px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-features i {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Services Section */
.services {
    background: #F8F9FC;
    padding: 80px 0;
}

.services-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.services-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title i {
    color: #004DFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    text-align: center;
    transition: all 0.3s ease;
    margin: 10px;
}

.service-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #004DFF;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    color: #004DFF;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.service-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

/* Gallery Section */
.gallery {
    background: #fff;
    padding: 80px 0;
}

.gallery-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Music Gallery specific styles */
.music-gallery .gallery-card:hover {
    border: 2px solid #004DFF;
}

/* Music Studio Section */
.studio {
    background: #fff;
    padding: 80px 0;
}

.studio-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.studio-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555555;
}

.studio-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.feature i {
    font-size: 24px;
    color: #004DFF;
    margin-top: 5px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.feature p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

.audio-samples {
    margin-top: 40px;
}

.audio-samples h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.audio-player {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 12px;
}

.audio-player audio {
    width: 100%;
    margin-bottom: 10px;
}

.audio-player p {
    font-size: 14px;
    color: #555555;
    margin: 0;
}

.studio-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.studio-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.studio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: #F8F9FC;
    padding: 80px 0;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004DFF;
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.map-link {
    color: #004DFF;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #0039CC;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: #004DFF;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links a,
.footer-services a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #004DFF;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #004DFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio by default */
    border-radius: 12px;
    overflow: hidden;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
  }

  /* Mobile fix: force a taller map on small screens */
  @media (max-width: 768px) {
    .map-container {
      padding-bottom: 75%; /* taller on mobile */
      min-height: 300px; /* ensures good height */
    }
  }

  .map-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #007BFF;
    font-weight: 500;
    text-decoration: none;
  }

  .map-link:hover {
    text-decoration: underline;
  }
/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-visuals {
        flex-direction: row;
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .studio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-visuals {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 20px;
    }
    
    .map-container {
        max-width: 100%;
    }
    
    .services-title {
        font-size: 22px;
    }
    
    .gallery-title {
        font-size: 20px;
    }
    
    .studio-title {
        font-size: 20px;
    }
    
    .contact-title {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
} 