/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFFFFF;
    color: #424245;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 1%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: left;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.saturnbeats-container {
    display: flex;
    align-items: left;
}

.saturnbeats {
    color: #d769fa;
    font-size: 38px;
    font-weight: bold;
    line-height: 1;
}

.logo-image {
    width: 100px;
    height: auto;
    margin-left: 8px;
    position: absolute;
    left: 100px;
    top: 5%;
    
}

.studio {
    color: #f97f1f;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    text-align: right;
    display: block;
    width: 100%;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 18px 20px;
}

nav ul li a {
    text-decoration: none;
    color: #6583ff ;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #93b3ff;
}

/* Hero Section */
.hero {
    background: url('images/hero.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-text h1 {
    font-size: 50px;
    color: #f36121;
    font-weight: bold;
	margin-top: 1px;
}

.hero-text p {
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 10px;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #ffd700;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
	margin-top: 10px;
}

.cta-button:hover {
    background-color: #333;
    color: #ffd700;
}

/* Sections */
section {
    padding: 10px 5%;
    text-align: center;
    max-width: auto;
    margin: auto;
}

/* About Section */
#about p {
    text-align: justify;
    text-justify: inter-word;
    font-size: 18px;
    color: #b7b7b7;
}
.justified {
    text-align: justify;
    text-justify: inter-word;
    font-size: 18px;
    color: #b7b7b7;
}

/* Services Section */
.service-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.service {
    background: #FFFFFF;
    padding: 20px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: translateY(-5px);
}

.service h3 {
    color: #333333;
    font-size: 22px;
}

/* Portfolio */
.portfolio-gallery img {
    width: 30%;
    margin: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.portfolio-gallery img:hover {
    transform: scale(1.05);
}


.gallery {
      padding: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 25px;
	  margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #111;
      color: #fff;
    }
    .song-card {
      background-color: #1f1f1f;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .song-card:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255,165,0,0.4);
    }
    .song-card img {
      width: 100%;
      height: auto;
      display: block;
    }
    .song-info {
      padding: 8px;
      text-align: center;
      font-size: 13px;
      color: orange;
      font-weight: bold;
    }

/* Contact Section */
#contact p {
    font-size: 18px;
    color: #000000;
}

/* Footer */
footer {
    background: #333333;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start; /* Align to left */
        padding: 10px 1%;
    }

    .logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
}


    .saturnbeats-container {
        justify-content: flex-start;
        display: flex;
        width: auto;
    }

    .logo-image {
    width: 100px;
    height: auto;
    margin-left: 8px;
    position: relative; /* changed from absolute */
    top: auto;
    left: auto;
}



    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 16px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        padding: 20px;
    }
}



 