@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto&display=swap');

:root {
    /* New Brand Palette */
    --bg: #ffffff;             /* Clean White Background */
    --accent-teal: #008080;    /* Deep Teal Main Brand Color */
    --accent-orange: #ff7f50;  /* Sunset Orange for '3D' & Action */
    --navy: #000080;           /* Professional Navy for Text */
    --text: #333333;           /* Dark Grey for Readability */
    --muted: #708090;          /* Slate Grey for Secondary Info */
    --card-bg: #f9f9f9;        /* Off-white for section subtle contrast */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95); /* Light blurred header */
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 128, 128, 0.1); /* Teal border */
}

header img {
    height: 50px;
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--accent-teal); /* Teal Navigation */
    transition: 0.3s;
    font-weight: 600;
}

nav a:hover {
    color: var(--accent-orange); /* Orange Hover */
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--accent-orange);
}

section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: auto;
}

h1, h2 {
    color: var(--navy); /* Navy Headings */
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Specific Highlight for your niche title */
h1 span {
    color: var(--accent-orange); /* Sunset Orange Highlight */
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 6rem 2rem;
}

.hero img {
    max-width: 220px;
    margin-bottom: 1rem;
    /* Removed drop-shadow glow to maintain minimalist look */
}

.hero p {
    max-width: 600px;
    font-size: 1.1rem;
    color: var(--muted); /* Slate Grey Muted Text */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 128, 128, 0.05);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.1);
}

.card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.card h3 {
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    color: #fff;
    background: var(--accent-teal); /* Teal Button */
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: var(--accent-orange); /* Orange Hover for Action */
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 128, 128, 0.05);
}

.event-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-top: 1px solid rgba(0, 128, 128, 0.1);
    color: var(--muted);
}

footer a {
    color: var(--accent-teal);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-orange);
}

@media (max-width: 700px) {
    header {
    flex-direction: column;
    gap: 0.5rem;
    }
    nav a {
    margin: 0 0.5rem;
    }
}
