@charset "utf-8";

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

html {
  scroll-behavior: smooth;
}

.logo img {width: 200px; height: auto;}

    body {
      font-family: "League Spartan",   sans-serif; 
      background-color: #000;
      color: #fff;
      line-height: 1.4;
    }

    a {
      color: #f5c16c;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    header {
 
	background: linear-gradient(rgba(0, 0, 0, 0.8) 1%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 1) 100%),
        url('../images/instruments2.jpg') top/cover no-repeat;
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px 40px;
    }

    nav {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
		vertical-align: top;
	 font-family:"Playfair Display", Georgia, serif;	
	font-size: 1.6rem;
	font-weight: 400;
    }
	
	nav ul {background:rgba(20,10,10,0.5);  height:40px; border-radius:8px;padding:0 8px; text-shadow:1px 1px 1px #000}

    .navspace {
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

#logo {position: absolute; top: 24px; left:48px; height: 240px; width: auto; display: none}

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero {
      max-width: 620px;
      padding: 30px 0 140px 0;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 16px;
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 24px;
      color: #f1f1f1;
    }

    .btn {
      display: inline-block;
      background: #f5c16c;
      color: #000;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: bold;
    }

    main {
      width: 90%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 0 50px 0;
    }

    section:first-child {padding: 0px 0 50px 0; }
    section {
      padding: 50px 0;
      border-bottom: 1px solid #222;
    }
    
	section p {font-size: 1.2rem;}

    section h2 {
	   font-family:"Playfair Display", Georgia, serif;	
      font-size: 2rem;
      margin-bottom: 20px;
      color: #f5c16c;
    }

    .two-column {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      align-items: center;
    }

    .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      font-size: 0.85rem;
    }

    .photo-grid a {
      color:#BABABA;
    }

    .photo-grid img,
    .about-image img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid #333;
    }

    .music-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .card {
      background: #111;
      padding: 20px;
      border-radius: 10px;
      border: 1px solid #222;
    }

    .card h3 {
      margin-bottom: 10px;
      color: #f5c16c;
    }

    .contact-info p {
      margin-bottom: 12px;
    }

    form {
      display: grid;
      gap: 15px;
      margin-top: 20px;
    }

    input,
    textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #444;
      border-radius: 6px;
      background: #0d0d0d;
      color: #fff;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    button {
      width: fit-content;
      padding: 12px 22px;
      border: none;
      border-radius: 6px;
      background: #f5c16c;
      color: #000;
      font-weight: bold;
      cursor: pointer;
    }

    button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    #form-status {
      font-size: 0.95rem;
      padding: 10px 14px;
      border-radius: 6px;
      display: none;
    }

    #form-status.form-sending {
      display: block;
      color: #aaa;
      background: #1a1a1a;
    }

    #form-status.form-success {
      display: block;
      color: #000;
      background: #f5c16c;
      font-weight: bold;
    }

    #form-status.form-error {
      display: block;
      color: #fff;
      background: #8b0000;
    }

    footer {
      text-align: center;
      padding: 30px 20px;
      color: #aaa;
      font-size: 0.95rem;
    }

    footer p {margin-bottom: 20px;}


    @media (max-width: 768px) {

	 #logo { top: 24px; left:48px; height: 120px; width: auto;}
      header {
        padding: 20px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .nav-links {
        gap: 12px;
      }

      .photo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .photo-grid {
        grid-template-columns: 1fr;
      }
    }


@media (max-width: 1100px) {
.logo img {width: 100px; height: auto;}
	}