/* Custom styles for Dakotan Records */
body {
    font-family: 'Arial', sans-serif;
    padding-top: 64px; /* Matches nav height (h-16) */
    overflow-x: hidden; /* Prevent horizontal scrolling on zoom */
}

nav a {
    transition: color 0.3s ease;
}

section {
    min-height: 50vh;
    padding-top: 16px;
    padding-bottom: 16px;
}

.hero-section {
    background-color: #87CEEB; /* Soft blue background */
}

.bg-soft-blue {
    background-color: #87CEEB; /* Define the soft blue color */
}

.grid div:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

footer a {
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    body {
        padding-top: 80px; /* Matches nav height (h-20) */
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px; /* Ensure content clears fixed header */
        min-height: 60vh; /* Ensure enough space */
    }
    .hero-section h1 {
        font-size: 2rem; /* Smaller heading for mobile */
        line-height: 1.2; /* Prevent text overlap */
    }
    .hero-section p {
        font-size: 1rem; /* Smaller paragraph text */
        max-width: 90%; /* Constrain width to avoid overflow */
        margin-left: auto;
        margin-right: auto;
    }
    nav {
        height: 60px; /* Consistent header height */
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 70px; /* Further adjust for smaller screens */
    }
    .hero-section h1 {
        font-size: 1.75rem;
    }
    .grid {
        grid-template-columns: 1fr; /* Stack items vertically on small screens */
    }
}