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

body {
    font-family: 'Karla', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 18px;
}

h1, h2, h3 {
    font-family: 'Rubik', sans-serif;
    color: #1a1a1a;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

section {
    padding: 5rem 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(22, 25, 37, 0.7), rgba(22, 25, 37, 0.7)),
                /* url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=1920') */
                /* url('./pics/Main.webp')  */
                url('./pics/Mixing.webp')
                center/cover; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F5FAF8;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #F5FAF8;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.social-links a {
    font-size: 1.5rem;
    color: #F5FAF8;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #7A9A95;
}

/* Services Section */
.services {
    background: #F5FAF8;
    text-align: center;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(122, 154, 149, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(122, 154, 149, 0.1) 0%, transparent 50%);
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #161925;
}

.services > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #161925;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(22, 25, 37, 0.1);
    transition: transform 0.3s ease;
    padding: 2rem;
}

.card:hover {
    transform: translateY(-5px);
}

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

.card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    color: #161925;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    text-align: center;
    background: #161925;
    color: #F5FAF8;
}

.about h2 {
    color: #F5FAF8;
}

.about > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.photo-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

/* Music Section */
.music {
    background: #161925;
    text-align: center;
    color: #F5FAF8;
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.music::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            rgba(122, 154, 149, 0.05) 0,
            rgba(122, 154, 149, 0.05) 2px,
            transparent 2px,
            transparent 4px
        );
    mask-image: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.2) 20%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 80%,
        transparent 100%
    );
    animation: waveform 8s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes waveform {
    0% {
        background-position: 0 0;
        transform: scaleY(1);
    }
    25% {
        transform: scaleY(1.1);
    }
    50% {
        transform: scaleY(1);
    }
    75% {
        transform: scaleY(0.9);
    }
    100% {
        background-position: 100px 0;
        transform: scaleY(1);
    }
}

.music h2 {
    color: #F5FAF8;
    position: relative;
}

.music > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 3rem auto;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 3rem auto;
}

/* Contact Section */
.contact {
    text-align: center;
    background: #F5FAF8;
}

.contact h2 {
    color: #161925;
}

.contact > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #161925;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #7A9A95;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Karla', sans-serif;
    background: white;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #161925;
}

textarea {
    height: 150px;
    resize: vertical;
}

button {
    background: #161925;
    color: #F5FAF8;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #7A9A95;
}

/* Process Section */
.process {
    text-align: center;
    background: #eef5f2;
}

.process h2 {
    color: #161925;
}

.process h4 {
    color: #161925;
    text-decoration:double;
}

.process > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #161925;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 3rem 1rem;
    }

    .social-links {
        top: 1rem;
        right: 1rem;
    }

    .social-links a {
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }
}


/* Testimonials Section */
.testimonials {
    background: #F5FAF8;
    text-align: center;
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(122, 154, 149, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(122, 154, 149, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #161925;
    position: relative;
}

.testimonials > p {
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #161925;
    position: relative;
    font-size: 1.2rem;
}

.testimonials-slider {
    /*padding: 3rem;*/
    position: relative;
    margin: 0 -3rem;
}

/* .testimonials a {
    color: blue;
} */

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(22, 25, 37, 0.1),
                0 5px 15px rgba(122, 154, 149, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 154, 149, 0.1);
    margin: 1rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(22, 25, 37, 0.15),
                0 10px 20px rgba(122, 154, 149, 0.1);
}

.stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.testimonial-card h3 {
    color: #161925;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.testimonial-card p {
    color: #666;
    flex-grow: 1;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}


/* testimonials */
.testimonial-card .author {
    color: #7A9A95;
    font-weight: 500;
    font-size: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(122, 154, 149, 0.2);
}

.swiper-pagination {
    position: relative;
    margin-top: 3rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #7A9A95;
    opacity: 0.5;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #161925;
    transform: scale(1.2);
}

/* contacts */
.contact-links {
    position: relative;
    top: 1rem;
    /* right: 2rem; */
    z-index: 10;
}

.contact-links a {
    font-size: 1.5rem;
    color: #161925;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #7A9A95;
}

/* deal banner */
  .deal-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: #111; /* dark background */
    background: rgb(22, 25, 37);
    color: #fff;
    font-family: 'Karla', sans-serif;
    font-size: 14px; /* default for desktop */
    font-weight: 500;
    text-align: center;
    z-index: 9999;
    padding: 6px 0;
    overflow: hidden;
  }

/* On screens smaller than 600px (phones) */
@media (max-width: 600px) {
  .deal-banner {
    font-size: 12px;
    padding: 4px 0; /* a bit slimmer for mobile */
  }
}

  .deal-banner p {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 25s linear infinite;
    margin: 0;
  }

  .deal-banner .deal-link {
    color: #ffcc00; /* highlight color */
    text-decoration: underline;
    margin-left: 8px;
  }

  .deal-banner .deal-link:hover {
    color: #fff200;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(25%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Prevents content hiding behind banner */
/*   body {
    padding-top: 30px; 
  }
 */