@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

:root {
    --background: #F0EEDE;
    --red: #ce000c;
    --dark: #141414;
    --brown: #3f2212;
    --gray: #ced1d3;
}

* {
margin: 0;
padding: 0;
}

body, html {
    background-color: var(--background);
    font-family: 'NATS', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-transform: uppercase;
    /* outline: 1px solid red; */
    overflow: auto;
    justify-content: center;
    align-items: center;
}

div {
    margin: auto;
    text-align: center;
}

p {
    text-transform: none;
    text-align: center;
    margin-top: 30%;
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.75em;
    letter-spacing: 0.05em;
    padding-left: 4vw;
    padding-right: 4vw;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: ease .4s;
} a:hover {
    color: var(--dark);
}

img {
    height: auto;
    max-height: 500px;
    width: 75%;
    border: .5rem double;
    border-color: var(--white);
}

iframe {
    width: 100%;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

h1, h2 {
    width: fit-content;
    margin: auto;
} .item h1 {
  height: 100px;
  display: flex;
  align-items: flex-end; /* aligns items to the bottom */
  margin: 0; /* optional: remove default margin */
  margin-left: auto;
  margin-right: auto;
}
 

.music-icon-link img {
    border: none;
    height: 35px !important;
    width: 35px !important;
    vertical-align: middle;
    border-radius: 20px;
    border: 3px solid var(--brown);
}

.links {
    width: fit-content;
    margin: auto;
    margin-top: 4%;
    margin-bottom: 4%;
    border-radius: 20px;
} .links a {
    margin-left: 1rem;
    margin-right: 1rem;
}


.nav {
    position: fixed;
    top: 0px;
    left: 15px;
} .nav * {
    outline: none !important;
}

.home {
    font-size: 2rem;
} .arrow {
    font-size: 4rem;
    background-color: var(--background);
    padding-right: 10px;
    border-radius: 15%;
}

.responsive-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hides scrollbar for IE, Edge, and Firefox */
    scrollbar-width: none;  
    /* Hides scrollbar for WebKit browsers */
    -ms-overflow-style: none;  
} .responsive-container .item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%; /* Full width for carousel */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}  .responsive-container::-webkit-scrollbar {
    display: none; /* Hides scrollbar for WebKit browsers like Chrome and Safari */
}



@media (max-width: 768px) {
    .pagination {
        display: flex;
        justify-content: center;
        padding: 10px 0;
        align-items: center;
    }
    
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 9px;
        background-color: var(--brown);
        rotate: 45deg; /* Rotates the dot to appear as a diamond */
        display: inline-block;
        transition: width .3s cubic-bezier(0.22, 1, 0.36, 1), height .3s cubic-bezier(0.22, 1, 0.36, 1), outline cubic-bezier(0.22, 1, 0.36, 1) .3s; /* Smooth transition for size change */
        cursor: pointer; /* Changes the cursor to a pointer to indicate clickability */
        outline: 3px solid transparent;
    }
    
    .dot:hover {
        outline: 5px solid var(--dark);
    }
    
    .active-dot {
        background-color: var(--dark); /* Active dot color */
        width: 18px; /* Larger width for active dot */
        height: 18px; /* Larger height for active dot */
        cursor: pointer; /* Changes the cursor to a pointer to indicate clickability */
        outline: 3px solid transparent !important;
    }

    img {
        width: 60%;
    }
}

/* Desktop view - Grid layout */
@media (min-width: 768px) {
    .responsive-container {
        flex-wrap: wrap;
        overflow: visible;
    }

    .responsive-container .item {
        flex: 1 1 33%; /* Adjust number for more columns */
        width: auto;
    }
}
