@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Satisfy&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Wavefont:wght@4..1000&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Satisfy&family=Spicy+Rice&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Trad:wght@100..400&family=Satisfy&family=Spicy+Rice&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Playwrite+NL:wght@100..400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Blaka+Ink&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Praise&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: Arial;
    width: 100%;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding-top: 1rem;

    /* Code to Change bg on scroll */
    transition: background-color 0.4s ease-in-out;

}

header.scrolled {
    box-shadow: 10px 10px 20px #111;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

.logo a {
    font-family: 'satisfy';
    font-size: 2.5rem;
    text-transform: none;
    color: #ff4500;
    transition: color 0.4s ease-in-out;
}

header.scrolled .logo a {
    color: #ff4500;

}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
    width: 100%;
    padding: 1rem;
}


.nav-links ul {
    display: flex;
    gap: 2rem;
    font-size: .8rem;
    transition: .5s;
}

.nav-links li {
    list-style: none;
    cursor: pointer;
}

.nav-links li i {
    color: #ff4500;

}



nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.4s ease-in-out;
    font-size: .8rem;
}

header.scrolled nav a {
    color: black;
}






/* Side bar design */

.sidebar #desktop-nav {
    position: fixed;
    top: 0;
    /* right: 0; */
    height: 100vh;
    width: 250px;
    z-index: 999;

    background-color: #222;
    backdrop-filter: blur(100px);

    overflow: auto;
    scroll-behavior: smooth;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;

    /* transition: 4s ease-out; */
}



.sidebar .nav-links ul {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar .nav-links ul i {
    margin-left: .5rem;

}

.sidebar .nav-links li {
    width: 100%;
}

.sidebar .nav-links i {
    color: #fff;
}

.sidebar .nav-links a {
    width: 100%;
    color: #fff;
    font-size: 1rem;
}

.nav-symbols {
    font-size: 1.5rem;
}




/* Hero section styling */

#hero {
    padding: 1rem;
    padding-top: 10rem;
    padding-bottom: 5rem;

    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('/images/abbey\ 2.jpg') fixed;


    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero img {
    max-width: 80vh;
    border-radius: 100%;
    /* visibility: hidden; */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}

.hero-section {
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #fff;
}

.hero-section h1 {
    font-size: 3rem;
}

.hero-section h1,
h3 {
    padding-bottom: 1rem;
    font-style: italic;
    font-family: "bakbak one";
}

.hero-section h1 span {
    color: #ff4500;
}

.hero-section h3 {
    color: #ff4500;

}


/* Music Section styling */

#music {
    margin: 1rem;
    margin-top: 100px;
}

.music h1 {
    font-size: 4rem;
    text-align: center;
    font-family: 'lobster';
}

.music-content {
    margin-top: 20px;
    padding: 1.5rem;
    justify-content: center;
    align-items: center;
    background: #000;

    display: flex;
    gap: 2rem;
}

.music-content h2 {
    color: #fff;
    font-size: 3rem;
    font-family: 'lobster';

}

.music-content iframe {
    max-width: 50%;
}

.streaming-platform {
    margin-top: 5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.streaming-platform .platforms-icons {
    font-size: 3rem;
    padding-top: 2rem;
}

.streaming-platform .platforms-icons a {
    text-decoration: none;
}

.streaming-platform .platforms-icons i {
    padding: .7rem;
    color: #333;
}


/* Video sectionn styling */

/* General Section Styling */
#videos {
    padding: 50px;
    text-align: center;
}

#videos h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'lobster';
}

#videos a {
    display: inline-block;
    margin-top: 20px;
    color: #ff4500;
    text-decoration: none;
    font-size: 1.2em;
}

#videos a:hover {
    text-decoration: underline;
}

/* Video Slider Styling */
.video-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 560px;
    margin: auto;
}

.video-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video-container iframe {
    flex-shrink: 0;
    width: 100%;
    max-width: 560px;
    height: 315px;
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 3em;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Navigation Dots */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #ff4500;
}

#ministries {
    margin-top: 150px;
    justify-content: center;
    align-items: center;

}

#ministries h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    text-transform: uppercase;
    font-family: 'bakbak one';
    text-align: center;
}

.ministries {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('/images/cool\ bg\ 22.jpg') fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    gap: 20px;

    justify-content: center;
    align-items: center;
    padding: 1rem;
    padding-bottom: 2rem;
}

.ministries p {
    color: #fff;
    line-height: 30px;
    font-size: 1.5rem;
}

.ministries img {
    width: 70%;
    padding: 0;
}



/* Booking section styling */


.booking-section {
    margin-top: 150px;
    padding: 80px;
    display: flex;
    justify-content: center;
    background-color: #111;
    color: #fff;
}

.booking-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;

    box-shadow: 10px 10px 20px #111;
    /* background-color: rgba(153, 170, 153, 0.63); */

    /* background: rgba(153, 170, 153, 0.336); */

    background-color: #0433b36b;



    backdrop-filter: blur(20px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}

.booking-left {
    flex: 1;
    padding: 40px;
    /* background-color: #333; */


    background: transparent;
    text-align: center;
}

.booking-left img {
    width: 100%;
    border-radius: 10px;
}

.booking-left h2 {
    font-size: 2rem;
    margin: 20px 0;
    font-family: 'lobster';
}

.booking-left p {
    margin-bottom: 40px;
    font-size: 1.2em;
}

.booking-right {
    flex: 1;
    padding: 40px;
    /* background-color: #444; */
    background-color: #0433b3bb;

    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* background-color: rgba(255, 255, 255, 0.4); */
    /* background-color: rgba(153, 170, 153, 0.925); */
    box-shadow: 10px 10px 20px #111;
}

.booking-right h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'lobster';
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-size: 1.1em;
}

input,
select,
textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #777;
    color: #fff;
}

#booking input:focus,
#booking select:focus,
#booking textarea:focus {
    outline: none;
    border: 1px solid #ff0;
}

label::placeholder {
    color: white;
}

.booking-btn {
    padding: 15px;
    background-color: #111;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.booking-btn:hover {
    background-color: #ffaa00;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
}

.contact-info a {
    color: #999;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}





/* Merch stylings */

.merch-section {
    padding: 50px;
    text-align: center;
    width: 100%;
}

.merch-section h1 {
    font-family: 'Bakbak One', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}


.merch-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.merch-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    width: 100%;
    padding: 1rem;
    scroll-behavior: smooth;
}

.merch-container::-webkit-scrollbar {
    display: none;
}

.merch-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    flex-shrink: 0;
}

.merch-item img {
    width: 100%;
    border-radius: 8px;
}

.merch-item h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.merch-item p {
    font-size: 0.9em;
    color: #666;
    margin: 10px 0;
}

.price {
    font-size: 1.2em;
    color: #333;
    margin: 10px 0;
    font-weight: bold;
}

button {
    background-color: #ff4500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e03e00;
}

/* Navigation Buttons */

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-button {
    left: 10px;
}

.right-button {
    right: 10px;
}

.nav-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Navigation Dots */

.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #ff4500;
}




.merch-custom {
    padding: 50px;
    text-align: center;
}

.merch-custom h1 {
    font-family: 'bakbak one', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.merch-contain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.merch-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: left;
    position: relative;
}

.merch-item img {
    width: 100%;
    border-radius: 8px;
}

.merch-item h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.merch-item p {
    font-size: 0.9em;
    color: #666;
    margin: 10px 0;
}

.customize-options label {
    display: block;
    margin: 5px 0;
    font-size: 0.9em;
}

.customize-options select,
.customize-options input {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2em;
    color: #333;
    margin: 10px 0;
    font-weight: bold;
}

button {
    background-color: #ff4500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #e03e00;
}

.cart {
    margin-top: 40px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart h2 {
    margin-bottom: 20px;
}

#cart-items {
    list-style-type: none;
    padding: 0;
}

#cart-items li {
    font-size: 1em;
    margin-bottom: 10px;
}

#checkout-button {
    margin-top: 20px;
    background-color: #28a745;
    color: #fff;
}






/* Event Details Popup */
.event-details {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: left;
    display: none;
    z-index: 1000;
}

.event-details h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.event-details p {
    font-size: 1rem;
    margin: 5px 0;
}

.event-details .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.event-details .btn:hover {
    background: #e03e00;
}

.close-details {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    font-weight: bold;
}







/* Upcoming Events Section */
.events-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #ff4500, #ff6600) fixed;
    color: #fff;
    text-align: center;
}

.events-section h1 {
    font-family: 'Bakbak One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.event {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #ff4500;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 80px;
    text-align: center;
}

.event-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 2rem;
    margin-top: 5px;
}

.event-info {
    text-align: left;
    color: #fff;
}

.event-info h2 {
    font-size: 1.8rem;
    margin: 0 0 10px;
    font-family: 'Bakbak One', sans-serif;
}

.event-info p {
    font-size: 1rem;
    margin: 0 0 10px;
}

.event-info span {
    margin-bottom: 2rem;
}

.event-location {
    font-style: italic;
    color: #ffd1a9;
    margin-bottom: 10px;
    display: block;
}

.btn {
    background-color: #fff;
    color: #ff4500;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
    color: #fff;
}



/* Notification Styling */
.notification {
    position: fixed;
    top: 20px;
    right: -350px;
    /* Initially hidden */
    width: 300px;
    background: #ff4500;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: right 0.5s ease;
    font-family: Arial, sans-serif;
}

.notification h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-family: 'Bakbak One', sans-serif;
}

.notification p {
    font-size: 0.9rem;
    margin: 0 0 15px;
    line-height: 1.4;
}

.notification .btn {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    color: #ff4500;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.notification .btn:hover {
    background-color: #e03e00;
    color: #fff;
}

.notification .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

.notification.show {
    right: 20px;
    /* Slide into view */
}



.countdown-section {
    text-align: center;
    padding: 50px;
    background-color: #1c1c1c;
    color: #fff;
}

.countdown-section h1 {
    font-family: 'Bakbak One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.countdown-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 120px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ff4500;
}

.countdown-item p {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #ddd;
}






/* Photo Gallery Styling */
.photo-gallery {
    padding: 50px;
    text-align: center;
    background-color: #f9f9f9;
}

.photo-gallery h1 {
    font-family: 'bakbak one', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}






/* About Me stylings */

/* Chat GPT style for about me */

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: #e6ded2;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 30%, transparent 50%);
}

.about-container {
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(70%); */
    transition: filter 0.3s ease;
}

/* .about-photo img:hover {
    filter: grayscale(0%);
} */

.about-content {
    padding: 40px;
    max-width: 600px;
}

.about-content h1 {
    font-family: 'bakbak one';
    font-size: 2em;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #ff4500;
    display: inline-block;
}

.highlight-quote {
    font-size: 1.4em;
    font-style: italic;
    margin: 20px 0;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Subtle Animation */
.about-content h1,
.about-content p {
    animation: fadeIn 1s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}









/* End Chat GPT style for about me */






#newsletter {
    background-color: #f7f7f7;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 50px auto;
}

.newsletter-container h2 {
    font-family: 'bakbak one', sans-serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.newsletter-container p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-family: 'bakbak one', sans-serif;

}


.newsletter-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'bakbak one', sans-serif;

    justify-content: center;
}


.newsletter-container form ::placeholder {
    color: #fff;
    font-family: 'bakbak one', sans-serif;

}

.newsletter-container input {
    width: 80%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;

}

.newsletter-container button {
    font-family: 'bakbak one', sans-serif;
}









/* Footer stylings */


/* Footer Section */
.footer-section {
    background-color: #111;
    color: #eee;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about {
    flex: 1;
    min-width: 250px;
}

.footer-about .logo a {
    text-decoration: none;
}



.footer-about p {
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 1rem;
}

.footer-links {
    flex: 1;
    min-width: 200px;

}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;

}

.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4500;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
    line-height: 2rem;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff4500;
}

.footer-social {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #eee;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff4500;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #bbb;

}

.footer-bottom p {
    padding: 1rem;
}

.footer-bottom a {
    color: orange;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}














@media (min-width:1024px) {

    .hideOnMobile {
        display: block;
    }

    #desktop-nav .nav-symbols {
        display: none;
    }

}

@media (max-width:1024px) {

    .hideOnMobile {
        display: none;
    }

    #desktop-nav .nav-symbols {
        display: block;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* height: 11vh; */
        width: 100%;
        padding: 1rem;
    }

    .album-content {
        display: flex;
        flex-wrap: wrap;
    }
}





@media (max-width:912px) {
    #desktop-nav .nav-symbols {
        display: block;
    }

    .hideOnMobile {
        display: none;
    }

    .album-content {
        display: flex;
        flex-wrap: wrap;
    }

    .about-container {
        flex-direction: column;
    }


}

@media (max-width:800px) {


    header {
        width: 100%;
    }

    .hideOnMobile {
        display: none;
    }

    .sidebar #desktop-nav {
        width: 100%;
    }

    #desktop-nav .nav-symbols {
        display: block;
    }
}

@media (max-width: 768px) {


    .sidebar {
        display: block;
    }

    .hideOnMobile {
        display: none;
    }

    .hero-container {
        flex-direction: column;
    }

}

/* Mobile design begins */

@media (max-width:600px) {

    html {
        font-size: 70%;
    }

    nav {
        height: 10vh;
    }

    .nav-symbols {
        margin-left: -20px;
    }

    header {
        width: 100%;
    }

    .logo a {
        font-size: 2.5rem;
    }

    .hero-container {
        padding-top: 10rem;
        display: flex;
        flex-direction: column;
    }

    .hero-section {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    #hero img {
        max-width: 40vh;
        border-radius: 100%;
        /* visibility: hidden; */
    }



    #hero {
        padding-top: 1rem;
    }


    .music-content {
        flex-direction: column;
    }

    .music-content iframe {
        max-width: 40vh;
    }

    .album-content {
        display: flex;
        gap: 2rem;
    }

    .album-content img {
        max-width: 40vh;
    }

    .albums-spotify {
        gap: -10rem;
        padding: 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .albums-spotify iframe {
        max-width: 50vh;
        max-height: 50vh;

    }



    .ministries {
        flex-direction: column;
        display: flex;
        gap: 2rem;
    }


    .booking-section {
        padding: 2rem;
        margin-top: 10rem;
    }



    .booking-container {
        display: flex;
        flex-direction: column;
    }



    .booking-container {
        display: flex;
        max-width: 1200px;
        width: 100%;
    }

    .about-container {
        flex-direction: column;
    }


    .contact .btn {
        width: 27rem;
    }

    .contact {
        display: block;

    }

    .footer-icons {
        flex-direction: column;
    }

    .footer-icons .logo {
        margin-bottom: 20px;
    }


}

@media (max-width:400px) {
    .sidebar #desktop-nav {
        width: 100%;
    }

    header {
        width: 100%;
    }
}