/* Basic CSS Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } body, html { width: 100%; height: 100%; font-family: "Bungee", system-ui; background-color: #e8e8e8; line-height: 1; } p {line-height:1;} .rubik-80s fade-regular { font-family: "Rubik 80s Fade", system-ui; font-weight: 400; font-style: normal; } a { color:darkred; } /* Header styles */ /* Header styles */ header { display: flex; justify-content: space-between; align-items: center; background-color: #33333300; /* Ensures background color in case the image is not loaded */ color: #fff; padding: 1rem; position: fixed; /* Keeps the header at the top of the viewport */ width: 100%; /* Ensures the header extends full width */ top: 0; /* Aligns the header at the top of the viewport */ left: 0; z-index: 1000; /* Ensures the header is above all other content */ opacity: 0.8; /* Initial medium opacity */ transition: opacity 0.3s ease; /* Smooth transition for opacity changes */ } header:hover { opacity: 1; /* Full opacity on hover */ } a { text-decoration: none; color:darkred; } .spacer-right { width: 30px; } .menu-btn { display: flex; justify-content: center; align-items: center; width: 50px; height: 50px; cursor: pointer; } .menu-btn__burger { width: 30px; height: 4px; background-color: #fff; transition: all 0.3s ease-in-out; position: relative; } .menu-btn__burger::before, .menu-btn__burger::after { content: ""; position: absolute; width: 30px; height: 4px; background-color: #fff; transition: all 0.3s ease-in-out; } .menu-btn__burger::before { transform: translateY(-10px); } .menu-btn__burger::after { transform: translateY(10px); } .menu-btn.open .menu-btn__burger { transform: translateX(-50px); background-color: transparent; } .menu-btn.open .menu-btn__burger::before { transform: rotate(45deg) translate(35px, -35px); } .menu-btn.open .menu-btn__burger::after { transform: rotate(-45deg) translate(35px, 35px); } /* Full-screen navigation styles */ .full-screen-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(11, 11, 11, 0.88); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease-in-out; flex-direction: column; z-index: 100; } .full-screen-nav.open { opacity: 1; visibility: visible; } .full-img { width:350px; max-width:90vw; height:auto; } .full-screen-nav ul { list-style: none; text-align: center; font-family: 'Bungee'; text-transform: uppercase; letter-spacing: 0.3rem; padding: 40px 0; } .full-screen-nav ul h3 { font-size: 26px; padding: 0 0 30px; color: darkred; } .full-screen-nav li { margin-bottom: 0; font-size: clamp(10px, 6vh, 28px); line-height:6.2vh; } .full-screen-nav a { color: darkred; text-decoration: none; transition: color 0.3s ease-in-out; } .full-screen-nav a:hover { color: #ccc; } /* Fullscreen Slide Styles */ #fullscreen-slide { height: 100vh; /* Full viewport height */ width: 100%; /* Full viewport width */ display: flex; justify-content: center; align-items: center; background: url('bg4.png') no-repeat center center; /* Adjust this URL to your image path */ background-size: cover; /* Ensures the background covers the entire slide */ /* transition: background-image 0.5s ease-in-out; */ } .title-image { max-width: 90%; /* Adjust based on your needs */ height: auto; } .section-header { text-align: center; font-size: 8vw; margin: 30px auto 0; } /* Grid of Slides */ #slide-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 40px; padding: 40px; max-width: 1600px; margin: auto; } .grid-slide { min-height: 300px; background-color: black; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 15px; transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; background-size: cover; background-position: center; position: relative; /* Ensure pseudo-element positioning context */ } .grid-slide-embed { min-height: 300px; background-color: black; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 15px; transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; background-size: cover; background-position: center; position: relative; /* Ensure pseudo-element positioning context */ } .grid-slide::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: black; /* Initial color is fully transparent black */ opacity: 0.8; /* Fully transparent initially */ transition: opacity 0.3s ease; /* Smooth transition for the overlay */ } .grid-slide:hover::before { opacity: 0.5; /* Darkens the background on hover */ } .grid-slide:hover { transform: translateY(-5px); box-shadow: 0 8px 12px rgba(0,0,0,0.15); } .grid-slide img { width: 30%; /* Relative to the parent's width */ height: auto; /* Initially set to auto */ border-radius: 50%; /* Creates the circular shape */ object-fit: cover; /* Ensures the image covers the area, might crop */ margin: 0 auto 10px; /* Center alignment and spacing */ box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Styling with shadow */ z-index: 1; /* Control stacking order */ display: block; /* Ensures proper box model handling */ aspect-ratio: 1 / 1; /* Ensures the width and height are always the same */ } .grid-slide h3 { font-size: 3.2rem; color: #fff; margin-bottom: 5px; font-family: "Roboto", system-ui; text-transform: uppercase; z-index: 1; font-size: clamp(25px, 3.8vw, 50px); color:; } .grid-slide p { font-size: 1rem; color: #666; z-index: 1; /* line-height: 1; */ font-family: "Roboto", sans-serif; color: #e8e8e8; text-transform: uppercase; font-size: x-small; letter-spacing: 0.2em; line-height: 1.4; margin-bottom: 20px; } /* Media query for mobile devices */ @media (max-width: 600px) { /* Adjust the max-width as needed for your breakpoint */ #slide-grid { grid-template-columns: 1fr; /* Changes the grid to a single column */ } .grid-slide { height: auto; /* Adjusts the height to be more flexible */ padding: 20px; /* Adds more padding for better spacing on smaller screens */ } .grid-slide img { width: 50%; /* Adjusts the image size to be smaller on mobile */ } } /* Footer Styles */ #site-footer { text-align: center; padding: 20px; background-color: #222; color: #fff; position: relative; bottom: 0; width: 100%; } .content { padding: 50px; max-width: 800px; margin: 100px auto 20px; background-color: #ffffffdb; color: #333; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .bio { position:relative; } .bio::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('bg6.png'); background-size: cover; opacity: 0.2; z-index: 0; pointer-events: none; } .text-content h1, .text-content h2 { font-family: "Bungee", sans-serif; /* Maintains header style consistency */ color: darkred; /* Echoes the design motif of your site */ font-size: min(50px, max(25px, 5vw)); } .text-content h2 { font-size:max(25px, 4vw); color: black; /* Echoes the design motif of your site */ } .text-content p { font-family: "Roboto", sans-serif; font-size: 1rem; margin-bottom: 20px; text-align: justify; text-indent: 0px; margin: 10px 0 20px; } .text-content img { z-index: 1; position: relative; max-width: 90%; margin:15px 0; } /* Enhance responsiveness */ @media (max-width: 800px) { .content { padding: 50px 20px; /* Reduced padding on smaller screens */ margin: 20px auto 0; /* Smaller margin */ } } header.text-page { background-color: #222; padding: 0; opacity: 1; font-size: clamp(10px, 3vw, 1em); } .discography-item { border: 0px solid #ccc; padding: 1rem; margin-bottom: 1rem; } .discography-item h3 { margin-top: 0; font-size:max(25px, 3vw); line-height: 1; } .discography-item h2 { margin-top: 0; font-size:max(15px, 2vw); line-height: 1; } .discography-item h4 { margin-top: 0; font-size:max(10px, 1vw); line-height: 1; } .discography-item p { margin: 0.5rem 0; } /* .discography-item li { list-style-type:none; } */ ol { list-style-position: inside; } .icon, .end-icon { cursor: pointer; user-select: none; } .end-icon { display: none; /* float: right; */ font-size: 50px; margin-left: 20px; } .icon, .end-icon { cursor: pointer; color: #c0c0c0; /* Light grey background */ transition: color 0.3s; /* Smooth transition for the background color */ } .icon:hover, .end-icon:hover { color: #000; /* Background turns black on hover */ } .content-container.expanded .end-icon { display: inline; /* Show when the container is expanded */ } .content-container { overflow: hidden; transition: max-height 0.3s ease-out; max-height: 0; } /* Style for expanded container */ .expanded { max-height: 1000px; /* Adjust as needed */ } .toggle { cursor:pointer; line-height: 3; } .text-content h4 { line-height: 1.1; } .icon_block { display: flex; flex-wrap: wrap; justify-content: space-around; } .streaming_icon { flex: 1 1 30%; /* Starts with 3 columns */ max-width: 30%; /* Ensures that each icon does not grow beyond 30% */ text-align: center; margin: 10px; position: relative; } .streaming_icon img { max-width:100%; } .streaming_icon p { line-height: 1; font-size: 14px; text-align: center; font-family: "bungee"; /* font-weight: bolder; */ font-size: x-small; } .streaming_icon:after { content: ''; position: absolute; border-radius: 0; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255,255,255,0); -webkit-transition: all 0.4s ease-in-out; -moz-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out; z-index: 9; pointer-events: none; display: flex; align-items: center; } .streaming_icon:hover:after { background-color: rgba(61,123,109,0.3); border-radius: 15px; -webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; z-index: 8; content:""; } h3.gig-listing { line-height: 1.2; color: darkred; margin: 15px 0 10px; font-size: 20px; letter-spacing: 0.05em; } h4.gig-listing { line-height: 1.2; color: #222; font-family: 'Roboto'; margin-bottom: 34px; font-style: italic; } /* General form styling */ #mc_embed_signup { background-color: #f9f9f9; padding: 20px; /* border-radius: 8px; */ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); margin: 41px 0px; } /* Heading styling */ #mc_embed_signup h2 { color: darkred; font-size: 24px; text-align: center; margin: 0 0 40px; } /* Label styling */ #mc_embed_signup label { color: #333; font-size: 21px; margin: 12px 0; display: inline-block; } /* Input fields styling */ #mc_embed_signup input[type="email"] { width: 100%; /* Full width */ padding: 10px; border: 1px solid #ccc; /* Light grey border */ border-radius: 4px; margin-bottom: 10px; /* Space below each input */ } /* Radio button styling */ #mc_embed_signup input[type="radio"] { margin-right: 5px; } /* Button styling */ #mc_embed_signup .button { background-color: #333; /* Blue background */ color: #fff; /* White text */ border: none; padding: 20px 30px; text-transform: uppercase; border-radius: 0px; cursor: pointer; display: inline-block; } #mc_embed_signup .button:hover { background-color: #004494; /* Darker blue background on hover */ } /* Link styling */ #mc_embed_signup a { color: #5c738c; text-decoration: none; font-family: 'Roboto'; font-size: 10px; } #mc_embed_signup a:hover { text-decoration: underline; /* Underline on hover */ } /* Error and success message styling */ #mc_embed_signup .response { color: #d00; /* Red text for errors */ margin-top: 10px; } #mc_embed_signup #mce-success-response { color: #28a745; /* Green text for success */ } /* Footer links styling */ #mc_embed_signup .foot { text-align: center; margin-top: 10px; } /* Style adjustments for specific ID or classes */ .optionalParent { margin-top: 20px; } /* Hiding the honeypot field visually but keeping it accessible for screen readers */ #mc_embed_signup div[aria-hidden="true"] { overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; } .indicates-required { font-family:'Roboto'; font-style: italic; font-size: x-small; } .input-group ul { list-style-type: none; } .inline-image { min-width:150px; height:auto; flex-basis: 150px; } .inline-image img { width:100%; height:auto; } .two-column { display :flex; flex-direction: row; margin: 10px 0 30px; flex-wrap: wrap; } .right-column { margin: 0 0 0 40px !important; flex-basis: 470px; } @media (max-width: 700px) { .right-column { margin:0!important; } .two-column { display :flex; flex-direction: row; margin: 10px 0 30px; flex-wrap: wrap; justify-content: center; } }