/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #58356d;
    color: white;
    line-height: 1.6;
}

/* Header */
header {
    border-bottom: 1px solid #27272a;
    background-color: #58356d;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), 
                url('/img/hero-image.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 700px;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.6));
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #60a5fa;
}

.links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.links a:hover {
    color: #60a5fa;
}


/* Images Section */
.images-section {
    padding: 5rem 1.5rem;
    background-color: #58356d;
}

.images-container {
    max-width: 1280px;
    margin: 0 auto;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 16 / 10;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-card:hover img {
    transform: scale(1.12);
}

/* Footer */
footer {
    background-color: #000;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #58356d;
    font-size: 0.9rem;
}