body {
    font-family: 'Cormorant Garamond';font-size: 22px;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* GENERAL STYLES */

.general {
    position: relative;
}

.general-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(24, 23, 23);
    text-align: center;
    letter-spacing: 2px;
    width: 60%; 
    height: 100%;
    inset: 0;
    margin: auto;
    gap: 1rem; 
}

.general-text h1 {
    font-size: 2.5vw;
    font-weight: initial;
    margin: 0;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .general-text h1 {
      font-size: 3.5vh;
    }
  }

.general-text h3 {
    font-size: 1.5vw;
    font-weight: initial;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .general-text h3 {
      font-size: 2.5vh;
    }
  }

.general-text a {
    font-size: 1.5vw;
    margin: 0;
    letter-spacing: 1px;
    color: black;
}

@media (max-width: 768px) {
    .general-text a {
      font-size: 2.5vh;
    }
  }

.general-text a:hover {
    color: #81483e;
    transform: translateY(-2px);  
}

.general-text span {
    font-size: 1.5vw;
    margin: 0;
    letter-spacing: 1px;
    color: black;
}

@media (max-width: 768px) {
    .general-text span {
      font-size: 1.5vh;
    }
  }

/* END GENERAL STYLES */

/* NAVIGATION STYLES */

nav {
    position: fixed;
    top: 5%; 
    left: 5%; 
    z-index: 2; 
}


@media (max-width: 768px) {
    nav {
      position: fixed;
      top: 5%;
      left: 0;
      width: 100%;
      text-align: center;
      padding: 10px;
    }
  }

nav a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: initial; 
    margin: 0 15px; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #81483e;
    transform: translateY(-2px);
}

/* END NAVIGATION STYLES */


/* HERO STUFF */

.hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(150%);
}

@media (max-width: 768px) {
    .hero {
      height: 80vh !important;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }
  }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translate(-50%, 0);
    color: whitesmoke; 
    text-align: center; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    letter-spacing: 10px; 
}

@media (max-width: 768px) {
    .hero-text {
        bottom: 5%;
        width: 100%;
        text-align: center;
        padding: 4%;
    }
}

.hero-text h1 {
    font-size: 3.2vw;
    margin: 0;
    font-weight: initial;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3.5vh;
    }
    
}

.hero-text h3 {
    margin: 0;
    letter-spacing: 4px; 
}

.hero-link {
    color: whitesmoke;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-link:hover {
    color: #81483e;
    transform: translateY(-2px);
}

/* END HERO STUFF */

/* INFO IMG STYLES */

.image-text-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f1f2f3;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .image-text-container {
        flex-direction: column;
        padding: 15px;
    }
}

.image-section {
    flex: 1.4;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    filter: brightness(70%);
    transition: filter 0.3s ease;
}

.image-section:hover {
    filter: brightness(85%);
}

.text-section {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: center;
    color: #333;
    gap: 25px;
}

@media (max-width: 768px) {
    .text-section {
        padding: 15px;
        align-items: stretch;
        text-align: center;
    }
}

.text-section h3 {
    font-size: 2vw;
    font-weight: 500; 
    color: #222;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .text-section h3 {
        font-size: 2.5vh;
    }
}

.text-section p {
    font-size: 1.5vw;
    line-height: 1.6;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .text-section p {
        font-size: 0.9rem;
    }
}

.text-section a {
    font-size: 2.2vw;
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

@media (max-width: 768px) {
    .text-section a {
        align-self: center;
        font-size: 2.5vh;
    }
}

.text-section a:hover {
    color: #81483e;
    transform: translateY(-2px);
}

/* Add modern spacing and alignment */
.image-text-container > * {
    border-radius: 8px;
    overflow: hidden; 
}
/* END INFO IMG STYLES */

/* SOCIAL STYLES */

.social {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #f1f2f3;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .social {
        height: 25vh !important;
    }
}

.social h3 {
    font-size: 1.5vw;
    font-weight: initial;
    margin: 0;
    letter-spacing: 3px;
    padding: 1%
}

@media (max-width: 768px) {
    .social h3 {
        font-size: 2.5vh;
    }
}

.social-icons {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-left: 22%;
    padding-right: 22%;
    padding-top: 1%;
    padding-bottom: 2%;
}

@media (max-width: 768px) {
    .social-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0px;
        justify-items: center;
        align-items: center;
        padding-bottom: 0%;
    }
}

.social-icons a {
    font-size: 1.5vw;
    margin: 0;
    letter-spacing: 1px;
    color: black;
    text-decoration: none;
}

.social-icons li {
    font-size: 1.5vw;
    margin: 0;
    letter-spacing: 1px;
    color: black;
    text-decoration: none;
    list-style-type: none;
}

.instagram svg,
.facebook svg,
.bandcamp svg,
.youtube svg,
.spotify svg {
    width: 4vw;
    height: 4vw;
}

@media (max-width: 768px) {
    .instagram svg,
    .facebook svg,
    .bandcamp svg,
    .youtube svg,
    .spotify svg {
        width: 6vh;
        height: 6vh;
    }
}

/* END SOCIAL STYLES */

/* BOOK NOW STYLES */

.book-now-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .book-now-container {
        margin-bottom: 20px;
    }
}

.book-now-container a {
    text-decoration: none;
    letter-spacing: 3px; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.book-now-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 2.5vw;
    color: black;
    text-decoration: none;
    background-color: #f1f2f3;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
    .book-now-button {
        font-size: 3vh;
        padding: 10px 20px;
    }
}

.book-now-button:hover {
    background-color: black;
    color: white;
}

/* END BOOK NOW STYLES */

/* CONTACT FORM STYLES */

.contact-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 50vw;
    height: auto;
    max-height: 50vh;
    background-color: grey;
}

@media (max-width: 768px) {
    .contact-form {
        max-width: 75vw;
        max-height: 80vh;
    }
}
    

.contact-form h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
}

/* END CONTACT FORM STYLES */