/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #a4313e;
    margin: 0;
    padding: 0;
    padding-top: 100px; /* Offset for fixed header */
    overflow-x: hidden;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Top Bar Styling */
.top-bar {
    background-color: #000; /* Black background for contrast */
    color: #fff; /* White text color */
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000; /* Ensure it stays above other elements */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute items across the width */
    font-family: 'Lora', serif;
    transition: transform 0.3s ease; /* Smooth transition */
}

/* Container for top bar content */
.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute items across the width */
    width: 100%;
}

/* Welcome text styling */
.welcome-text {
    font-size: 1rem; /* Adjust as needed */
    margin-right: 20px; /* Space between welcome text and other items */
}

/* Contact information styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between address and phone numbers */
    margin-right: -400px;
}

/* Address styling */
.address {
    font-size: 0.9rem;
}

/* Phone number styling */
.phone-numbers {
    font-size: 0.9rem;
}

/* Map Icon Styling */
.map-icon {
    display: none; /* Hide by default */
}

.map-icon a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.map-icon a i {
    margin-right: 15px; /* Space between icon and text */
    font-size: 1.2rem; /* Adjust icon size */
}

/* Social Links Styling */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.social-links a i {
    margin-right: 5px; /* Space between icon and text */
    font-size: 1.2rem; /* Adjust icon size */
}

/* Mobile Styles */
@media (max-width: 1270px) {
    .contact-info {
        display: none; /* Hide contact info on mobile */
    }

    .map-icon {
        display: flex; /* Show map icon on mobile */
        margin-left: auto; /* Push map icon to the rightmost position */
        font-size: 0.8rem; /* Adjust font size */
        margin-right: 20; /* Reset margin-right */
    }

    .top-bar {
        font-size: 0.8rem; /* Smaller font size */
        padding: 8px 15px; /* Adjust padding if needed */
        justify-content: space-between; /* Ensure space is distributed */
    }

    .social-links {
        gap: 10px; /* Reduced gap between icons */
    }

    .social-links a {
        font-size: 0.9rem; /* Smaller icon and text size */
    }

    .social-links a i {
        font-size: 1rem; /* Adjust icon size */
    }
}

/* Add transitions for smooth hiding/showing */
.top-bar, header {
    transition: transform 0.7s ease-in-out; /* Adjust timing and easing as needed */
}

/* Adjusting the header position to account for the top bar */
header {
    position: fixed;
    width: 100%;
    top: 45px; /* Adjust this value based on the height of the top bar */
    z-index: 1000; /* Below the top bar */
    background-color: #f4f4f4; /* Matching the background color */
    padding: 15px 0;
    transition: transform 0.8s ease; /* Smooth transition */
}

/* Header */
header {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100px; /* Set header height */
    background-color: #ffffff; /* Background color */
    color: #000000; /* Text color */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
}

.logo-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo {
    width: 170px; /* Reduced size */
    height: auto;
}

.menu-toggle {
    display: none; /* Hide menu toggle on larger screens */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 27px;
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
}

nav {
    margin-left: 120px;
    flex: 1;
}

nav ul.nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* Align items to the right */
    padding: 0;
    font-size: 0.85rem; /* Reduce font size */
    gap: 15px; /* Space between items */
    flex-wrap: nowrap; /* Ensure items stay on one line */
}

nav ul.nav-list li {
    margin: 0 10px; /* Reduced margin */
}

nav ul.nav-list li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 10px; /* Adjusted padding */
    font-family: 'Lora', serif;
}

nav ul.nav-list li a:hover, nav ul.nav-list li a.active {
    border-radius: 4px;
    color: #fefefe;
    background-color: #000000; /* Add background on hover */
}

/* Mobile Styles */
@media (max-width: 1250px) {
    .menu-toggle {
        display: block; /* Show menu toggle on smaller screens */
    }

    nav {
        margin-left: 0;
    }

    nav ul.nav-list {
        display: none; /* Hide nav list on smaller screens */
        position: absolute;
        top: 100px;
        right: 0;
        width: 30%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul.nav-list.show {
        display: flex; /* Show nav list when 'show' class is added */
    }

    nav ul.nav-list li {
        margin: 0;
        width: 100%;
    }

    nav ul.nav-list li a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #a4313e;
    }

    nav ul.nav-list li a:last-child {
        border-bottom: none;
    }
}



/* About Us Section */
#about-us {
    /* background: linear-gradient(to bottom, #ffffff 10%, #eccfc9); Gradient starts fading to white earlier */
    background-color: #ffffff;
    color: #000000; /* Text color */
    padding: 60px 20px;
}

#about-us .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

#about-us .text-content {
    flex: 1 1 100%; /* Take full width on smaller screens, leave space for images on larger screens */
    font-family: 'Lora', serif;
    line-height: 1.8;
}

#about-us .image-gallery {
    flex: 1 1 100%;
    margin-top: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Space between list items */
    max-width: 70%; /* Adjust the width as needed */

}

#about-us .image-gallery li {
    width: 100%;
}

#about-us .image-gallery img {
    width: 85%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style for the Image and Quote Section */
#home-image-quote .image-quote-container {
    text-align: center;
    margin: 0; /* Remove top and bottom margin */
    padding-top: 0; /* Remove padding at the top */
    margin-top: 45px;

}

.centered-image {
    max-width: 100%; /* Adjust the width as needed */
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
}

.quote {
    font-family: 'Baguet Script', serif;
    font-size: 2rem;
    color: #000000;
    margin-top: 10px;
}

/* Adjusting spacing between the text and images in the About Us section */
#about-us .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Adds space between text and images */
}

#about-us .text-content {
    flex: 1;
    padding-right: 10px; /* Adds space between the text and the images */
}

#about-us .image-gallery {
    flex: 1;
    padding-left: 20px; /* Adds space between the images and the text */
    padding-top: 60px;
    padding-bottom: 0px; /* Adds space between the images and the text */

}

#about-us .image-gallery img {
    margin-bottom: 20px; /* Adds more space between the individual images */
}


/* Mobile Styles */
@media (max-width: 767px) {
    #about-us .content-wrapper {
        flex-direction: column;
        gap: 0px; /* Reduce gap on smaller screens */
        align-items: center; /* Center align the entire content on mobile */
    }

    #about-us .text-content {
        flex: 1 1 100%; /* Full width on small screens */
        text-align: justify; /* Improve readability */
    }

    #about-us .image-gallery {
        flex: 1 1 100%;
        gap: 15px; /* Adjust space between images */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center align the images */
    }

    #about-us .image-gallery img {
        width: 140%; /* Full width image for better visibility */
        margin-bottom: 10px;
        margin-left: -60px;
    }

    #home-image-quote .image-quote-container {
        margin-top: 45px;
    }

    .centered-image {
        max-width: 100%; /* Ensure image uses full screen width */
    }

    .quote {
        font-size: 1.6rem; /* Smaller font size for better readability */
    }
}


/* The Team Section
#the-team {
    background-color: #ffffff; 
    color: #a4313e; 
    padding: 20px 0;
}


#the-team .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* New contact-info section 
.contact-info {
    flex: 1 1 100%; 
    margin-bottom: 20px; 
    text-align: center;
}

.contact-image {
    max-width: 100%; 
    height: auto;
    border-radius: 8px; 
    margin-bottom: 10px; 
}

.contact-info p {
    font-family: 'Lora', serif;
    line-height: 1.8;
    color: #a4313e;
}

#the-team .text-content {
    flex: 1 1 100%; 
    font-family: 'Lora', serif;
    line-height: 1.8;
}

#the-team .image-gallery {
    flex: 1 1 100%;
    margin-top: 20px;
    text-align: center; 
}

#the-team .image-gallery img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}


@media (min-width: 768px) {
    #the-team .text-content {
        flex: 1 1 60%;
    }

    #the-team .image-gallery {
        flex: 1 1 40%; 
        margin-top: 200px;
    }
} */

/* Dance With Us Section */
#dance-with-us {
    background: #fefefe; /* Light background color */
    color: #000000; /* Text color */
    padding: 60px 20px;
}

#dance-with-us .content-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

#dance-with-us .text-content {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
    line-height: 1.8;
}

#dance-with-us h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #070707;
    text-transform: uppercase;
    border-bottom: 2px solid #000000;
    display: inline-block;
    padding-bottom: 10px;
}

.schedule-tables h2 {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.table th,
.table td {
    font-family: 'Lora', serif;
    vertical-align: middle;
    padding: 1rem;
}

.table thead th {
    background-color: #f8f9fa;
    font-weight: bold;
    font-size: 1.1rem;
}


#dance-with-us .programs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#dance-with-us .program {
    flex: 1 1 45%;
    background: #ffffff; /* Background color matching the site theme */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#dance-with-us .program h2 {
    margin-bottom: 15px;
    color: #000000;
}

#dance-with-us .program p {
    font-family: 'Lora', serif;
    line-height: 1.8;
}

#dance-with-us .schedule {
    margin-top: 40px;
    text-align: center;
}

#dance-with-us .schedule h2 {
    margin-bottom: 20px;
}

#dance-with-us .schedule ul {
    list-style: none;
    padding: 0;
}

#dance-with-us .schedule ul li {
    margin-bottom: 15px;
    font-family: 'Lora', serif;
}

#dance-with-us .enroll {
    margin-top: 40px;
    text-align: center;
}

#dance-with-us .enroll h2 {
    margin-bottom: 20px;
}

#dance-with-us .enroll p {
    font-family: 'Lora', serif;
    line-height: 1.8;
}

/* Basic styles for images within the programs section */
.program-image {
    width: 100%;
    max-width: 600px; /* Adjust the max-width to fit your design */
    height: auto;
    display: block;
    margin: 20px auto; /* Centers the image and adds space above and below */
    border-radius: 8px; /* Optional: Adds rounded corners to the image */
}

/* Add padding and margin to program sections for better spacing */
.program {
    margin-bottom: 40px; /* Adds space between program sections */
    padding: 20px;
    border: 1px solid #ddd; /* Optional: Adds a border around each program section */
    border-radius: 8px; /* Optional: Adds rounded corners to the border */
    background-color: #f9f9f9; /* Optional: Adds a background color */
}

/* Responsive design for images */
@media (max-width: 768px) {
    .program-image {
        max-width: 100%; /* Ensures images are responsive on smaller screens */
    }
}


/* Testimonials Section */
#testimonials {
    padding: 60px 20px;
    background-color: #ffffff; /* Background for testimonials */
    color: #000000; /* Text color for contrast */
}

#testimonials .content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#testimonials h1 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #000000; /* Color for the main heading */
    border-bottom: 2px solid #000000;
    display: inline-block;

}

.testimonial {
    background-color: #ffffff; /* Slightly transparent background */
    border-left: 4px solid #000000;
    margin-bottom: 30px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 13px rgba(0, 0, 0, 0.1); /* Shadow effect */
    color: #000000; /* Ensure text is readable on background */
    position: relative;
    overflow: hidden; /* Ensure text stays within bounds */
}

.testimonial h2 {
    font-size: 1.5rem;
    color: #000000; /* Color for testimonial names */
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 1rem;
    color: #000000; /* Color for testimonial text */
}

.testimonial p:last-child {
    font-weight: 100;
    margin-top: 10px;
    color: #000000; /* Color for the last paragraph */
}

/* Photo Styling */
.testimonial-photo {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    width: 140px; /* Set a fixed width for the images */
    height: 140px;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without distortion */
    border-radius: 50%; /* Make the image circular */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

/* Clearfix for Floating Elements */
.testimonial::after {
    content: "";
    display: table;
    clear: both;
}

/* Added Image Styling */
.testimonials-image {
    margin-top: 40px; /* Space above the image */
}

.testimonials-image img {
    max-width: 75%; /* Ensure image is responsive */
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
}

@media (max-width: 480px) {
    #testimonials .testimonial h2 {
        font-size: 1rem;
    }
}


/* Exciting News Section */
#exciting-news {
    padding: 60px 20px;
    background-color: #f4f4f4; /* Light background for contrast */
    color: #333; /* Text color */
}

#exciting-news .content-wrapper {
    max-width: 1200px; /* Wider content area */
    margin: 0 auto;
    text-align: center;
}

#exciting-news h1 {
    font-family: 'Lora', serif;
    font-size: 2.5rem; /* Larger heading */
    margin-bottom: 40px;
    color: #000; /* Main heading color */
    border-bottom: 3px solid #000;
    display: inline-block;
    padding-bottom: 10px; /* Padding for bottom border */
}

.news-item {
    margin-bottom: 60px; /* Increased spacing */
}

.news-item h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #000; /* Subheading color */
}

.news-image img {
    max-width: 50%; /* Responsive image width */
    height: auto;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Shadow effect */
    margin-bottom: 30px;
}

/* Layout for subsequent news paragraphs with images on the sides */
.news-paragraph {
    display: flex;
    flex-direction: row; /* Default to row layout */
    align-items: flex-start;
    gap: 20px; /* Spacing between text and image */
    margin-bottom: 60px; /* Spacing between paragraphs */
    position: relative;
    padding: 20px; /* Padding around paragraph content */
    border: 1px solid #ddd; /* Border for visual separation */
    border-radius: 8px; /* Rounded corners */
    background-color: #fff; /* Background color for paragraph */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.news-paragraph img {
    max-width: 250px; /* Size of side images */
    height: auto;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    transition: transform 0.3s ease; /* Smooth zoom effect */
}

.news-paragraph img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.news-paragraph.text-left img {
    order: -1; /* Move image to the left of text */
    margin-bottom: 20px; /* Spacing between image and text */
}

.news-paragraph.text-right img {
    margin-bottom: 20px; /* Spacing between image and text */
}

.news-text {
    flex: 1;
    margin: 0;
    padding: 20px; /* Padding around text */
}

.news-paragraph h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000; /* Subheading color */
}

.news-paragraph ul {
    list-style-type: disc;
    padding-left: 15px; /* Reduced padding for list */
    font-size: 1rem;
    color: #555; /* Darker text for list items */
    margin: 0; /* Reset margins for better alignment */
}

.news-paragraph ul li {
    margin-bottom: 8px; /* Reduced spacing between list items */
    padding-left: 5px; /* Adjust padding to reduce space between bullet and text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-paragraph {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center; /* Center align items */
        text-align: center; /* Center align text */
    }

    .news-paragraph img {
        max-width: 100%; /* Make images responsive */
        margin-bottom: 20px; /* Spacing between image and text */
    }

    .news-paragraph.text-left img,
    .news-paragraph.text-right img {
        position: static; /* Reset position for stacked layout */
        margin: 0 auto; /* Center images */
    }

    .news-item {
        margin-bottom: 40px; /* Reduced margin for smaller screens */
    }

    #exciting-news h1 {
        font-size: 2.2rem; /* Smaller heading on small screens */
    }

    .news-item h2 {
        font-size: 1.8rem; /* Smaller subheading on small screens */
    }
}

@media (max-width: 480px) {
    .news-paragraph h3 {
        font-size: 1.5rem; /* Smaller heading for mobile screens */
    }

    .news-paragraph ul {
        font-size: 0.9rem; /* Smaller list font size */
    }

    .news-paragraph ul li {
        margin-bottom: 6px; /* Reduced spacing between list items */
    }
}


/* Gallery Overview */
#gallery-overview {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

#gallery-overview h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #070707;
    text-transform: uppercase;
    border-bottom: 2px solid #000000;
    display: inline-block;
    padding-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.gallery-item p {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}


/* Category-Specific Gallery Pages */
#category-gallery {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

#category-gallery h1 {
    font-size: 1.8em;
    margin-bottom: 40px;
    color: #000000;
    text-transform: uppercase;
    border-bottom: 2px solid #000000;
    display: inline-block;
    padding-bottom: 10px;
}

#category-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#category-gallery .gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#category-gallery .gallery-grid img:hover {
    transform: scale(1.05);
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black with opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80vw; /* 80% of the viewport width */
    max-width: 40vw; /* Ensure the image doesn't exceed 90% of the viewport width */
    height: auto; /* Maintain the aspect ratio */
    max-height: 100vh; /* 80% of the viewport height */
    object-fit: contain; /* Ensures image scales properly */
}

/* Hide header when modal is active */
.hide-header {
    display: none;
}

/* Style the Modal (background) */
#imageModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
    align-items: flex-start; /* Align items to the top */
    justify-content: center;
    padding-top: 0; /* Remove any padding from the top */
}

/* Modal Image */
#modalImage {
    margin: 0; /* Remove any default margins */
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
}


/* Caption of Modal Image (Image Text)
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
} */

/* The Close Button */
.close {
    position: absolute;
    top: 50px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}


/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-family: 'Lora', serif;

    margin-top: auto;
    padding: 10px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #a4313e;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-family: 'Lora', serif;
    margin-top: auto;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #a4313e;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}