html body a,
html body p,
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
    font-family: 'Inter', 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: rgb(26, 26, 26);
    scroll-behavior: smooth;
}

.html-block {
    position: relative;
    min-height: 50px;
    transition: all 0.3s ease;
}

.html-block.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
    min-height: 60px;
    overflow: hidden;
    position: relative;
}

.html-block.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 25%, 
        rgba(255,255,255,0.4) 50%, 
        transparent 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 2s ease-in-out infinite;
}

/* Skeleton shimmer animation */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== ANIMATION SYSTEM ===== */
/* 
USAGE EXAMPLES:
- Default: data-animation="fade-in"
- From left: data-animation="fade-in-left"  
- From right: data-animation="fade-in-right"
- From top: data-animation="fade-in-top"
- From bottom: data-animation="fade-in-bottom"
- Scale in: data-animation="scale-in"

SPEED CONTROL:
- Add class "fast" for 0.3s duration
- Add class "slow" for 1s duration  
- Add class "no-animation" to disable

GLOBAL DISABLE:
- Add class "no-animations" to body element
*/

/* Base animation settings - easily customizable */
:root {
    --animation-duration: 0.6s;
    --animation-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --animation-distance: 30px;
}

/* Faster animations */
.html-block.fast {
    --animation-duration: 0.3s;
}

/* Slower animations */
.html-block.slow {
    --animation-duration: 1s;
}

/* Disable animations entirely */
.html-block.no-animation,
.no-animations .html-block {
    --animation-duration: 0s;
}

.html-block.loaded {
    animation-duration: var(--animation-duration);
    animation-timing-function: var(--animation-timing);
    animation-fill-mode: both;
}

.html-block.loaded.fade-in {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

.html-block.loaded.fade-in-left {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(calc(-1 * var(--animation-distance)));
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.html-block.loaded.fade-in-right {
    animation-name: fadeInRight;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(var(--animation-distance));
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.html-block.loaded.fade-in-top {
    animation-name: fadeInTop;
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(calc(-1 * var(--animation-distance)));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.html-block.loaded.fade-in-bottom {
    animation-name: fadeInBottom;
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(var(--animation-distance));
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.html-block.loaded.scale-in {
    animation-name: scaleIn;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.html-block.error {
    background-color: #ffe6e6;
    border: 1px solid #ff9999;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    color: #cc0000;
}

.html-block.error::before {
    content: '⚠️ ';
}

#header-container {
    min-height: auto;
}

#hero-container {
    min-height: 300px;
}

#features-container {
    min-height: 200px;
    margin-bottom: 40px;
}

#about-container {
    min-height: 150px;
    margin-bottom: 40px;
}

#footer-container {
    background-color: #000;
    padding: 60px 20.84vw 60px 20.84vw;
    min-height: 80px;
    margin-top: 60px;
}

@media (max-width: 768px) {    
    #hero-container {
        min-height: 200px;
    }

    .setlist-list {
        max-height: unset !important;
    }
}

header {
    position: relative;
    width: 100%;
    height: 76vh;
    min-height: 600px;
    overflow: hidden;
    top: 0;
    z-index: 1000;
}

.header-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,          
        rgb(26, 26, 26) 100%         
    );
    z-index: 2;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 88px 0 0 88px;
    gap: 75px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand .site-title {
    color: #fff; /* Changed to white to contrast with dark background */
    font-size: 50px; /* 50px as requested */
    font-weight: 600;
    margin: 0;
    line-height: 1; /* Tight line height to eliminate extra space */
}

.navbar-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: flex-start; /* Align nav items to top */
}

.navbar-nav li {
    margin: 0;
}

#navbar-container {
    position: absolute;
    z-index: 3;
}

.navbar-nav a {
    color: #b9b9b9;
    text-decoration: none;
    font-weight: 600;
    font-size: 29px; /* 29px as requested */
    padding: 0 1rem; /* Removed top/bottom padding to align better */
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1; /* Tight line height */
    display: block;
}

.navbar-nav a:hover {
    color: #fff;
    outline: none;
}

.navbar-nav a.active {
    color: #fff;
}

.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Introduction Block */
.intro-block {
    padding: 0 10.42vw; /* 200px at 1920px width = 10.42vw */
    margin-top: -20px; /* -20px margin top */
    background-color: rgb(26, 26, 26); /* Match body background */
    color: white;
}

.intro-heading {
    font-size: 83px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.intro-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1820px;
}

.intro-image {
    flex-shrink: 0;
}

.intro-image img {
    width: 623px;
    height: 540px;
    object-fit: cover;
    display: block;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 39.58vw; /* 760px at 1920px width = 39.58vw */
    font-size: 26px;
    line-height: 1.6;
    color: white;
    margin-top: -5px;
}

.intro-text p {
    line-height: 34px;
    font-weight: 300;
}

/* Responsive intro block */
@media (max-width: 1200px) {
    .intro-block {
        padding: 0 8.33vw; /* Proportionally scaled for smaller screens */
    }
    
    .intro-heading {
        font-size: 60px;
    }
    
    .intro-text {
        width: 50vw; /* Slightly wider on medium screens for better readability */
    }
    
    .intro-image img {
        width: 100%;
        max-width: 623px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .intro-block {
        padding: 0 5.21vw; /* Further scaled down for mobile */
    }
    
    .intro-heading {
        font-size: 48px;
        margin-bottom: 2rem;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-text {
        width: 100%; /* Full width on mobile */
        font-size: 24px;
        order: -1; /* Put text above image on mobile */
    }
    
    .intro-image {
        align-self: center;
    }
}

/* Bandleden Block */
.bandleden-block {
    padding: 400px 10.42vw 0; /* 400px top, same side padding as intro block */
    background-color: rgb(26, 26, 26); /* Match body background */
    color: white;
}

.bandleden-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.bandleden-image-container img {
    width: 69.11vw; /* 1327px at 1920px width = 69.11vw */
    height: 37.29vw; /* 716px at 1920px width = 37.29vw */
    object-fit: cover;
    display: block;
}

.bandleden-title {
    font-size: 58px;
    font-weight: 600;
    text-align: center;
    color: white;
    margin: 0;
    margin-bottom: 3rem;
}

/* Responsive bandleden block */
@media (max-width: 1200px) {
    .bandleden-block {
        padding: 300px 8.33vw 0; /* Reduced top padding for smaller screens */
    }
    
    .bandleden-image-container img {
        width: 80vw; /* Slightly wider on medium screens */
        height: auto; /* Let height adjust naturally */
        max-width: 1327px; /* Don't exceed original size */
    }
    
    .bandleden-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .bandleden-block {
        padding: 200px 5.21vw 0; /* Further reduced for mobile */
    }
    
    .bandleden-image-container img {
        width: 90vw; /* Almost full width on mobile */
        height: auto;
    }
    
    .bandleden-title {
        font-size: 36px;
    }
}

#goto-over-ons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Scrolling Lyrics Block */
.lyrics-block {
    padding-top: 400px; /* Same top padding as bandleden block */
    background-color: rgb(26, 26, 26);
    overflow: hidden; /* Hide text that goes beyond viewport */
    position: relative;
}

.lyrics-container {
    width: 100%;
}

.lyrics-row {
    font-family: 'Rockwell', serif;
    color: #3c3c3c8a;
    white-space: nowrap;
    margin-bottom: 100px; /* 100px gap between rows */
    position: relative;
    width: 150%; /* Increased from 120% for more dramatic effect */
    transform: translateX(0); /* Initial position */
    transition: none; /* Remove transition for smooth scroll effect */
    /* Optimize for smooth scrolling performance */
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Font sizes for each row */
.lyrics-row:nth-child(1) { font-size: 50px; }
.lyrics-row:nth-child(2) { font-size: 58px; }
.lyrics-row:nth-child(3) { font-size: 41px; }
.lyrics-row:nth-child(4) { font-size: 54px; }
.lyrics-row:nth-child(5) { font-size: 50px; }
.lyrics-row:nth-child(6) { font-size: 41px; }
.lyrics-row:nth-child(7) { font-size: 58px; }

/* Responsive lyrics */
@media (max-width: 1200px) {
    .lyrics-block {
        padding-top: 300px;
    }
    
    .lyrics-row {
        margin-bottom: 80px;
    }
    
    .lyrics-row:nth-child(1) { font-size: 40px; }
    .lyrics-row:nth-child(2) { font-size: 46px; }
    .lyrics-row:nth-child(3) { font-size: 33px; }
    .lyrics-row:nth-child(4) { font-size: 43px; }
    .lyrics-row:nth-child(5) { font-size: 40px; }
    .lyrics-row:nth-child(6) { font-size: 33px; }
    .lyrics-row:nth-child(7) { font-size: 46px; }
}

@media (max-width: 768px) {
    .lyrics-block {
        padding-top: 200px;
    }
    
    .lyrics-row {
        margin-bottom: 60px;
    }
    
    .lyrics-row:nth-child(1) { font-size: 30px; }
    .lyrics-row:nth-child(2) { font-size: 35px; }
    .lyrics-row:nth-child(3) { font-size: 25px; }
    .lyrics-row:nth-child(4) { font-size: 32px; }
    .lyrics-row:nth-child(5) { font-size: 30px; }
    .lyrics-row:nth-child(6) { font-size: 25px; }
    .lyrics-row:nth-child(7) { font-size: 35px; }
}

/* Setlist Block */
.setlist-block {
    padding-top: 400px; /* Double the padding of other blocks (400px * 2) */
    padding-left: 20.84vw; /* Double the side padding (10.42vw * 2) */
    padding-right: 20.84vw;
    background-color: rgb(26, 26, 26);
    color: white;
}

.setlist-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.setlist-title {
    font-size: 58px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.setlist-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.setlist-buttons > .setlist-button:first-child {
    padding-left: 0;
}

.setlist-button {
    background: none;
    border: none;
    font-size: 28px;
    color: rgb(77, 77, 77);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.setlist-button:hover {
    color: rgba(255, 255, 255, 0.8);
}

.setlist-button.active {
    color: white;
}

.setlist-content {
    /* max-width: 510px; */
}

.setlist-list {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    display: flex;
    flex-wrap: wrap;
    max-height: 730px;
    width: 100%;
    gap: 2px;
    flex-direction: column;
}

.setlist-item {
    /* margin-bottom: 0.5rem;
    padding: 0.25rem 0; */
}

.setlist-item:last-child {
    margin-bottom: 0;
}

/* Responsive setlist */
@media (max-width: 1200px) {
    .setlist-block {
        padding-top: 600px;
        padding-left: 16.66vw;
        padding-right: 16.66vw;
    }
    
    .setlist-title {
        font-size: 48px;
    }
    
    .setlist-buttons {
        gap: 1.5rem;
    }
    
    .setlist-button {
        font-size: 24px;
    }
    
    .setlist-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .setlist-block {
        padding-top: 400px;
        padding-left: 10.42vw;
        padding-right: 10.42vw;
    }
    
    .setlist-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .setlist-title {
        font-size: 36px;
    }
    
    .setlist-buttons {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .setlist-button {
        font-size: 20px;
    }
}

/* Gallery Block */
.gallery-block {
    padding-top: 400px; /* Same as setlist block */
    padding-left: 20.84vw; /* Same side padding as setlist */
    padding-right: 20.84vw;
    background-color: rgb(26, 26, 26);
    color: white;
}

.gallery-title {
    font-size: 58px;
    font-weight: 600;
    color: white;
    margin: 0 0 3rem 0;
}

.gallery-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(200px, auto);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(77, 77, 77, 0.1);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery layout patterns */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Loading state for gallery */
.gallery-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    color: rgb(77, 77, 77);
    font-size: 18px;
}

/* Lightbox for full-size viewing */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-lightbox.active {
    display: flex;
}

/* Responsive gallery */
@media (max-width: 1200px) {
    .gallery-block {
        padding-top: 600px;
        padding-left: 16.66vw;
        padding-right: 16.66vw;
    }
    
    .gallery-title {
        font-size: 48px;
    }
    
    .gallery-container {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .gallery-block {
        padding-top: 400px;
        padding-left: 10.42vw;
        padding-right: 10.42vw;
    }
    
    .gallery-title {
        font-size: 36px;
        margin-bottom: 2rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-item.wide,
    .gallery-item.large {
        grid-column: span 1;
    }
}

/* Page sections */
.page-section {
    min-height: 100vh;
    padding: 4rem 0;
    scroll-margin-top: 80px; /* Account for sticky header */
}

.page-section:first-of-type {
    padding-top: 2rem; /* Reduce padding for first section */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.page-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Section-specific styling */
#home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home h2,
#home p {
    color: white;
}

#over-ons {
    background-color: #f8f9fa;
}

#setlist {
    background-color: white;
}

#gallerij {
    background-color: #f8f9fa;
}

#contact {
    background-color: #343a40;
    color: white;
}

#contact h2,
#contact p {
    color: white;
}

/* Responsive navigation */
@media (max-width: 768px) {
    header {
        height: 80vh;
        min-height: 500px;
    }
    
    .navbar {
        justify-content: space-between;
        align-items: center;
        padding: 30px 30px 30px 30px;
        flex-direction: row;
        width: 100%;
        background-color: #131313;
    }
    
    .navbar-brand .site-title {
        font-size: 36px;
        margin-bottom: 0;
        color: #fff;
    }
    
    .navbar-toggle {
        display: flex;
        order: 2;
        position: absolute;
        right: 44px;
    }
    
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 20px 20px;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .navbar-nav.active {
        right: 0;
    }
    
    .navbar-nav li {
        width: 100%;
    }
    
    .navbar-nav a {
        padding: 1rem 0;
        font-size: 24px;
        color: #fff;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .navbar-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    .navbar-nav a.active {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
    
    .navbar-nav a.active::after {
        display: none;
    }
    
    .page-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .page-section h2 {
        font-size: 2rem;
    }
}

/* Footer Styles */
footer {
    background-color: #000000; /* Fully black */
    height: 725px; /* Fixed height as requested */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.footer-bottom-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
}

.footer-bottom-text > p {
    font-size: 18px;
    color: #fff;
}

.footer-bottom-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-mail-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-contact-heading {
    font-size: 58px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-contact-text {
    max-width: 590px;
}

.footer-contact-text > p {
    font-size: 24px;
    color: white;
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.4;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-info-row > .footer-info-item:last-child strong,
.footer-info-row > .footer-info-item:last-child p {
    text-align: right;
}

.footer-info-row > .footer-info-item:nth-child(2) strong,
.footer-info-row > .footer-info-item:nth-child(2) p {
    text-align: center;
}

.footer-info-row > .footer-info-item:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-info-item {
    display: flex;
    flex-direction: column;
}

.footer-info-item > strong {
    color: white;
    padding-bottom: 6px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.footer-info-item > strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1px;
    background-color: #737373;
}

.footer-info-row > .footer-info-item:first-child > strong::after {
    left: 107%;
}

.footer-info-row > .footer-info-item:last-child > strong::after {
    left: 44%;
}

.footer-info-item h4 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: white;
}

.footer-info-item p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
}

.footer-info-item p.facebook {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-info-item p.facebook::before {
    content: '';
    display: inline-block;
    width: 34.3px;
    height: 34.3px;
    background-image: url('../images/facebook-logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.footer-extra-info a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.footer-extra-info a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.footer-extra-info a:hover .facebook {
    color: #1877f2; /* Facebook blue color on hover */
}

.footer-mail-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(115, 115, 115);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-family: 'Rockwell', serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    width: 155px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-mail-button:hover {
    background-color: rgb(135, 135, 135);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(115, 115, 115, 0.3);
}

.footer-mail-button:active {
    transform: translateY(0);
}

/* Responsive footer */
@media (max-width: 1200px) {
    footer {
        height: auto;
        min-height: 600px;
        padding: 3rem 2rem;
    }
    
    .footer-contact-heading {
        font-size: 48px;
    }
    
    .footer-contact-text {
        font-size: 24px;
    }
    
    .footer-info-row {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    footer {
        min-height: 500px;
        padding: 2rem 1rem;
    }
    
    .footer-contact-heading {
        font-size: 36px;
        margin-bottom: 1.5rem;
    }
    
    .footer-contact-text {
        font-size: 20px;
        margin-bottom: 2rem;
    }
    
    .footer-info-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-info-row > .footer-info-item:nth-child(2) {
        position: unset;
        transform: none;
        left: unset;
    }

    .footer-info-row > .footer-info-item:first-child > strong::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-info-row > .footer-info-item:last-child > strong::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-info-item {
        padding: 0;
        justify-content: center;
        align-items: center;
    }
    
    .footer-mail-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}