/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #f5f5dc; 
    color: #2c3e50; 
}

h1, h2, h3 {
    font-family: 'Lobster', cursive; 
    color: #2c3e50;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p, ul {
    font-family: 'Indie Flower', cursive;
    font-size: 1.2rem;
    font-weight: bold;
}

.mainContainer{
    width: 100%;
    background-color: #f5f5dc;
    border-color: red;
}

/* Social Icons */
.social-icons {
    position: fixed;
    top: 30px;
    left: 0px;
    display: flex;
    gap: 5px;
    z-index: 1000;
}

.social-icons a {
    display: block;
    height: 28px;
}

.social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Styles */
nav {
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background: transparent;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    font-family: 'Indie Flower', cursive; 
    font-size: 1rem; 
}

nav a:hover {
    background-color: rgba(44, 62, 80, 0.7);
    border-radius: 5px;
}

/* Buttons */
button, .contact-button, .buy-album-button {
    font-family: 'Indie Flower', cursive; 
    font-size: 1rem; 
}

/* Contact Button */
.contact-button {
    background-color: transparent;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
}

.contact-button:hover {
    background-color: rgba(44, 62, 80, 0.7);
}

/* Buy Album Button */
.buy-album-button {
    background-color: transparent; 
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: none; 
    border-radius: 5px;
    margin-left: 1rem; 
}

.buy-album-button:hover {
    background-color: rgba(44, 62, 80, 0.7); 
}

.slideshow-container {
    width:100%;
    margin: 0 auto;
    padding-top: 5px;
    z-index: 0;
  }
  
  /* Style each slide */
  .slide {
    display: none;
    width: 100%;
    color: white;
    text-align: center;
  }

  .slide img {
    width: 80%;
    /*height: 100%;*/
    /*object-fit: cover;*/ 
  }

  .fade{
    animation-name: slide;
    animation-duration: 4s;

  }

/*@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
    
}*/
.slide:first-child {
    display: block;
  }



/* Content */
.content {
    text-align: center;
    padding-top: 100px;
}

.content h1 {
    font-family: 'Lobster', cursive;
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.content h2 {
    font-family: 'Indie Flower', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content p {
    font-family: 'Indie Flower', cursive;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Main Container */
main {
    padding: 2rem 1rem;
}

figure {
    margin: 2rem 0;
}

ul {
    padding-left: 1.5rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.5rem;
}

/* contact message */

.response{
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1023;
    border-radius: 8px;
}

.response span{
    font-family:Arial, Helvetica, sans-serif;
}

/* response wait spinner */
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
  }
  
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
  }
  
  @keyframes sp-anime {
    100% { 
      transform: rotate(360deg); 
    }
  }
  
/* Dropdown Form Styles */
.contact-dropdown {
    position: relative;
    display: inline-block;
}
.contact-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1023;
    border-radius: 8px;
}

.contact-dropdown.open .contact-dropdown-content {
    display: block;
}

.contact-dropdown-content input,
.contact-dropdown-content textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    box-sizing: border-box;
}

@media (min-width: 768px) { 
    .contact-dropdown:hover .contact-dropdown-content {
        display: block;
    }
}

.contact-dropdown-content button {
    width: 100%;
    padding: 8px;
    background-color: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.contact-dropdown-content button:hover {
    background-color: #34495e;
}


/* welcome section */
#welcome-message {
    display: none; 
    position: fixed; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    background: #fff; 
    padding: 2rem; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    text-align: center; 
    max-width: 90%; 
    width: 400px; 
    font-family: 'Montserrat', sans-serif; 
}

#welcome-message h1 {
    font-family: 'Lobster', cursive; 
    color: #333; 
    margin-bottom: 1rem; 
}

#welcome-message p {
    font-size: 1.2rem; 
    color: #555; 
}

#welcome-message .button {
    display: inline-block; 
    margin-top: 1.5rem; 
    padding: 0.75rem 1.5rem; 
    background-color: #007bff; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
}

#welcome-message .button:hover {
    background-color: #0056b3; 
}

/* Desktop Navigation */
#desktopMenu {
    display: flex;
    background: black;
    padding: 10px 30px; 
    position: fixed;
    top: 0px;
}
#desktopMenu ul {
    display: flex;
    margin: 0px auto;
}

#desktopMenu ul li {
    margin-left: 0px;
}

#desktopMenu ul li a {
    color: #e6d968; 
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
}

#desktopMenu ul li a:hover {
    background-color: rgba(126, 108, 9, 0.1); 
    transform: scale(1.05); 
}
body {
    margin-top: 60px; 
}

/* Mobile Menu */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger span {
    display: none;
    width: 100%;
    height: 4px;
    background-color: white;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}


.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 16px); 
}

.hamburger.open span:nth-child(2) {
    opacity: 0; 
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -15px); 
}

/* Mobile Menu */
#mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    margin: auto;
    width: 80%;
    /*height: 100%;*/
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#mobileMenu ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    flex-direction: column;
}

#mobileMenu ul li {
    margin: 20px 0;
}

#mobileMenu ul li a {
    color: white;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: bold;
}
#mobileMenu ul li a:hover {
    color: white;
}

#mobileMenu.show {
    display: flex;
    opacity: 1;
}

.mobile-logo {
    display:block;
    text-align: center;
    margin-top: 10px;
}

.mobile-logo img {
    width: 65px; 
    height: auto;
}

#logo{
    margin-left: 5px;
    margin-right: 8px;
    display: block;
    width: 65px; 
    height: auto;
}

#privacy{
    top: 200px;
    width:70%;
    margin:auto;
    position:static;
}

/*#privacy *{
    all: inherit;
    font-family: Arial;
    font-size: 12px;
    font-weight: 600;
    margin: 5px;
}*/

/* Mobile Styles */  
 @media (max-width: 768px) {
    #desktopMenu {
        display: none;
    } 
    
    #logo{
        width: 45px; 
        height: auto;
    }

    .mobile-logo {
        display: flex;
        position: absolute;
        top: 10px;
        left: 95%;
        width: 100%;
        transform: translateX(-50%);
    }
        .contact-dropdown-content {
            position: fixed;
            top: 30%;
            left: 50%;
            transform: translate(-60%, -50%);
            max-width: 400px; 
            background: rgb(253, 253, 253);
            padding: 20px;
            border-radius: 8px;
            display: none; 
        }
        .contact-dropdown-content input,
        .contact-dropdown-content textarea {
            width: 100%;
            padding: 8px;
            margin: 8px 0;
            box-sizing: border-box;
        }
    
        .contact-dropdown-content button {
            width: 100%;
            padding: 8px;
            background-color: #2c3e50;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }
    
        .contact-dropdown-content button:hover {
            background-color: #e9edf1;
        }

        .hamburger {
            display: flex;
            top: 5px;
            position: fixed;
            /*left: 60%;*/
            float:right;            
        }

        .hamburger span {
            display: flex;
            width: 100%;
            height: 4px;
            background-color: white;
        }
        .social-icons {
            position: absolute;
            top: 5px;
        }
        .social-icons a {
            display: block;
            height: 23px;
        }
    }


