:root {
    --gold: #c5a059;
    --dark-bg: #0f0f0f;
    --light-text: #e0e0e0;
    --accent: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: sticky;
    top: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover, .active {
    color: var(--gold);
}

/* Hero Section */
.hero, .sub-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1552083375-1447ce886485?auto=format&fit=crop&q=80&w=1400');
    background-size: cover;
    background-attachment: fixed;
}

.hero h1 { font-size: 4rem; }

/* Main Content */
.container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 5rem;
}

img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(40%);
    transition: transform 0.5s ease;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card, .event {
    background: var(--accent);
    padding: 2rem;
    border-left: 3px solid var(--gold);
}

.event { margin-bottom: 3rem; }
.event img { margin-top: 1.5rem; }

footer {
  background-color: #282828;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction:column;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-container {
  display:flex;
  flex-direction:row;
  gap:15px;
}

.social-icon {
  display: flex;
  width: 50px;
  color: #ffffff;
  font-size: 18px; /* Control size here */
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effects */
.social-icon:hover {
  color: #00acee; /* Highlight color */
  transform: translateY(-3px); /* Subtle lift effect */
}

/* Optional: Specific brand colors on hover */
.social-icon[aria-label="Instagram"]:hover { color: #e4405f; }

/* The background overlay */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

/* The actual fullscreen image */
.overlay-content {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid white;
}

/* The Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #bbb;
}

/* The actual fullscreen image */
.overlay-content {
    max-width: 90%;
    max-height: 90%;
    border: 3px solid white;
}

/* The Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #bbb;
}