
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+3:wght@300;400;600&display=swap');

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

:root {
  --navy: #0d2b55;
  --dark-red: #7a1f2e;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --light-gray: #e8e4dc;
  --text: #1a1a2e;
  --white: #ffffff;
  --olive-leaf: #496936;
  --apricot-cream: #f0c682;
  --steel-blue: #2484c6;
  --oxford-navy: ##003366;
  
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.nav-logo span,
.section-title,
.hero-title,
.cal-header h3,
.tile-title,
.panel-title,
.event-day,
.event-name,
.pop-name,
.footer-brand-text h3 {
  font-family: 'Playfair Display', serif;
}

.slide-arrow,
.cal-nav-btn,
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
}

.slide-arrow:hover,
.cal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.nav-logo span {
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "\25BE";
  font-size: 0.65rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 260px;
  list-style: none;
  background: rgba(13, 43, 85, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 110;
}

.nav-dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown-menu li:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
}

.nav-dropdown:not(.is-force-closed):hover .nav-dropdown-menu,
.nav-dropdown:not(.is-force-closed):focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.btn {
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--dark-red);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(122, 31, 46, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(122, 31, 46, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

section {
  padding: 80px 40px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.tiles-section {
  background: var(--navy);
  color: var(--white);
}

.tiles-section .section-title {
  color: var(--white);
}

.tiles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tiles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}


footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-row img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.footer-brand-text h3 {
  font-size: 1.2rem;
  color: var(--white);
}

.footer-brand-text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.back-to-top {
  font-weight: 600;
  letter-spacing: 0.04em;
}

#photocreds{
  color: #808088;
  font-size: 90%;
}

@media (max-width: 1024px) {
  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
  }

  section {
    padding: 60px 20px;
  }

  .tiles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .tiles-section {
    padding: 48px 20px;
  }

  footer {
    padding: 48px 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1200px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 0;
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.14);
  }

  .nav-dropdown-menu a {
    padding: 10px 30px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
}
