/* Fonts */
@font-face {
  font-family: 'Porkys';
  src: url('fonts/Porkys.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'D-DINCondensed';
  src: url('fonts/D-DINCondensed.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


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

body {
  font-family: 'D-DINCondensed', Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #2b2f77; /* body text color */
  font-size: 1.4rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Porkys', sans-serif;
  color: #00c9a7; /* header color */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #00c9a7;
  padding: 1rem 2rem;
  color: #fff;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
  max-height: 90px;

}

.navbar .logo:hover {
  color: #00c9a7; /* highlight color */
  transform: scale(1.05);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00c9a7;
}

/* Hero Banner */
.hero {
  background: url('images/banner.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #00c9a7;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #00997c;
}

main {
  background-image: url(images/pattern.png);
}

/* Articles */
.article {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.article h2 {
  margin-bottom: 1rem;
}

/*Venue*/
.venue-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  background: #222;
  color: #ddd;
  padding: 2rem;
  text-align: center; /* default; we override per column */
}

.footer-content {
  display: flex;
  width: 100%;
  justify-content: space-between;  /* left / center / right */
  align-items: center;              /* vertically align */
  flex-wrap: nowrap;                /* keep one row */
  margin-bottom: 1rem;
  gap: 2rem;                        /* breathing room between columns */
}

footer h3 {
  margin-bottom: 0.5rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer a {
  color: #ddd;
  text-decoration: none;
}

footer a:hover {
  color: #00c9a7;
}

/* LEFT: sitemap */
.sitemap {
  flex: 1 1 0;
  text-align: left;
  margin-left: 8rem; /* add breathing space from left edge */
}

/* CENTER: company disclaimer + stamp + copyright */
.footer-company {
  flex: 1 1 0;
  text-align: center;   /* keep strictly centered */
  color: #ddd;
}

.footer-company p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.company-stamp {
  max-width: 120px;
  height: auto;
  margin: 0.5rem auto;
  display: block;
  opacity: 0.9;
}

.copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  display: block;
}

/* RIGHT: social header + inline icons aligned to the right */
.social {
  flex: 1 1 0;
  text-align: centre;
  margin-right: 8rem; /* push away from edge */
}

.social h3 {
  text-align: center; /* center header above icons */
}

.social-list {
  display: inline-flex;      /* icons in one line */
  gap: 1rem;
  justify-content: flex-end; /* align icons to the right */
  padding: 0;
  margin: 0.5rem 0 0;
  list-style: none;
}

.social-list li {
  display: inline-block;
}

.social-icon {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.social-icon:hover {
  transform: scale(1.1);
}
