/* profil.css - Style untuk Halaman Profil Desa */

/* Basic CSS for layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    /* Enhanced background matching index.css style */
    background: 
        linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 25%, rgba(46, 204, 113, 0.1) 50%, rgba(241, 196, 15, 0.1) 75%, rgba(231, 76, 60, 0.1) 100%),
        linear-gradient(to bottom, rgba(150, 150, 150, 0.801) 60%, rgb(0, 0, 0) 100%),
        url('../img/pkk ibu ibu-2.jpeg') center/cover no-repeat,
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(52, 152, 219, 0.02) 10px,
            rgba(52, 152, 219, 0.02) 20px
        );
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    scroll-behavior: smooth;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background 0.8s ease;
}

/* Enhanced overlay pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2980b9 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header-text h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Admin Access Styles */
.admin-access {
    display: flex;
    align-items: center;
}

.admin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.admin-icon {
    font-size: 1.1rem;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

.nav-item {
    padding: 1rem 0;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: #3498db;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.container h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.container h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Page Content */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f5582);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
    position: relative;
    text-align: center;
}

.section h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.section h4 {
    color: #34495e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.section ul {
    color: #666;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.section li {
    margin-bottom: 0.5rem;
}

.section li strong {
    color: #2c3e50;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 15px 15px 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.info-item:hover::before {
    transform: translateX(0);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #3498db;
}

/* Officials Grid */
.officials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.official-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.official-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 20px 20px 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.official-card:hover::before {
    transform: translateX(0);
}

.official-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.official-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.official-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.official-card p {
    color: #666;
    margin: 0.25rem 0;
}

.official-card p strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Kegiatan Grid */
.kegiatan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.kegiatan-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.kegiatan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 20px 20px 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.kegiatan-card:hover::before {
    transform: translateX(0);
}

.kegiatan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.kegiatan-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.kegiatan-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.kegiatan-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.waktu {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.dusun-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    list-style: none;
}

.dusun-list li {
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(52, 152, 219, 0.1);
    text-align: center;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dusun-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 10px 10px 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.dusun-list li:hover::before {
    transform: translateX(0);
}

.dusun-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

/* Maps Grid */
.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.map-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 15px 15px 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.map-box:hover::before {
    transform: translateX(0);
}

.map-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.map-box h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map-box iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.facility-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.facility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 20px 20px 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.facility-item:hover::before {
    transform: translateX(0);
}

.facility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.facility-item .number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.facility-item p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Village Image */
.village-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin: 2rem auto;
    display: block;
    transition: all 0.3s ease;
}

.village-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.footer-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-content p {
    margin: 0.5rem 0;
    opacity: 0.8;
}


.village-image {
    width: 100%;
    max-width: 800px;
    height: 300px;         /* Lebih gepeng/landscape */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    margin: 2rem auto;
    display: block;
    transition: all 0.3s ease;
}
.village-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    /* tambahkan overflow agar mask tidak keluar */
    overflow: hidden;
}

/* Efek wipe opacity atas dan bawah */
.village-image-wrapper::before,
.village-image-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 3;
    pointer-events: none;
}

.village-image-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 100%);
}

.village-image-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 100%);
}
/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}

section:nth-child(even) {
    animation: slideInLeft 0.6s ease-out;
}

/* Focus styles for accessibility */
.nav-item:focus,
.official-card:focus,
.kegiatan-card:focus,
.facility-item:focus,
.btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* ===== Responsive Design for Mobile ===== */
@media (max-width: 768px) {
    .header-content,
    .nav-container,
    .page-content,
    .footer-content,
    .container {
        padding: 0 1rem;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .header-text p {
        font-size: 0.85rem;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .nav-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }

    section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section h3 {
        font-size: 1.2rem;
    }

    section h4 {
        font-size: 1rem;
    }

    .profile-grid,
    .officials-grid,
    .kegiatan-grid,
    .facilities-grid,
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dusun-list {
        grid-template-columns: 1fr;
    }

    .official-card,
    .kegiatan-card,
    .facility-item,
    .info-item {
        padding: 1rem;
    }

    .official-card .icon,
    .kegiatan-card .icon {
        font-size: 2rem;
    }

    .facility-item .number {
        font-size: 2rem;
    }

    .village-image {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .admin-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-content,
    .nav-container,
    .page-content,
    .footer-content,
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 1.5rem 0.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }   
    .hero p {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    .nav-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    .official-card,
    .kegiatan-card,
    .facility-item,
    .info-item {
        padding: 0.75rem;
    }
    .official-card .icon,
    .kegiatan-card .icon {
        font-size: 1.5rem;
    }
    .facility-item .number {
        font-size: 1.5rem;
    }
    .profile-grid,
    .officials-grid,
    .kegiatan-grid,
    .facilities-grid,
    .maps-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .dusun-list {
        grid-template-columns: 1fr;
    }
    .village-image {
        max-width: 100%;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .admin-link {
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .header-text h1 {
        font-size: 1.2rem;
    }
    .header-text p {
        font-size: 0.8rem;
    }
    .footer-content p {
        font-size: 0.8rem;
    }
    .footer-links a {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons a {
        width: 100%;
        max-width: 200px;
    }
}