/* General Styles */
body {
    margin: 0;
    font-family: "Georgia", serif; /* This will look very different from Helvetica */
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    height: 50vh;
    background: url('images/banner.avif') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* This creates a subtle 'lift' from the background */
}

/* Content Blocks */
.content-block {
    padding: 80px 0;
    text-align: center;
}

.about-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    gap: 20px;
}
/*media*/
.media-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap; /* Stacks on mobile */
    padding: 60px 0;
}

.gallery-column { flex: 2; min-width: 350px; }

.music-column { flex: 1; min-width: 300px; }

.main-photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.main-photo img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.main-photo:hover img {
    transform: scale(1.05);
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.music-links {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.music-icon {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    font-weight: bold;
    color: #222;
}

/* Footer & Contact */
.contact-footer {
    background: #111;
    color: #eee;
    padding: 60px 0 20px 0;
    text-align: center;
}

.footer-cols {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.social-links {
    list-style: none;
    padding: 0;
}

.social-links li a {
    color: #aaa;
    text-decoration: none;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.updates-section {
    padding: 80px 0;
    background-color: #f4f4f4; /* A slight tint to separate it from other sections */}

.updates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.update-card {
    flex: 1;
    min-width: 300px; /* Forces stack on mobile */
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.update-image img {
    width: 100%;
    height: 400px;
    object-fit: cover; /* Keeps Nikon Z8 shots from stretching */
}

.update-content {
    padding: 20px;
    text-align: left;
}

.update-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}

.update-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.resources-section {
    padding: 80px 0;
    background-color: #f4f4f4; /* A slight tint to separate it from other sections */
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.resource-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.resource-image img {
    width: 100%;
    aspect-ratio: 16 / 9; /* Keeps all cards uniform regardless of the photo you use */
    object-fit: cover;
}

.resource-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-content .category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e67e22; /* A nice highlight color for tags */
    margin-bottom: 8px;
    display: block;
}

.resource-content h3 {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.resource-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit; /* Keeps your Helvetica/Arial font */
}
.form-group textarea {
    height: 150px;
}
.send-btn {
    background: #222;
    color: white;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.send-btn:hover {
    background: #444;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}