* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
main {
  background-color: #ffffff;
}

.site-header {
  position: static;
  width: 100%;
  background-color: #0b0b0b;
}

.navbar {
  width: 100%;
  min-height: 80px;
  padding: 1rem 5%;


  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
}

.navbar-logo {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.navbar-links a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.navbar-links a:hover {
  opacity: 0.65;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .navbar {
    min-height: auto;
    padding: 1rem 1.25rem;

    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .navbar-links {
    width: 100%;
    justify-content: center;
    gap: 0.7rem 1.2rem;
    flex-wrap: wrap;
  }

  .navbar-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .navbar {
    padding-inline: 0.75rem;
  }

  .navbar-links {
    gap: 0.6rem 0.9rem;
  }

  .navbar-links a {
    font-size: 0.82rem;
  }
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
}

main {
  width: 100%;
}

.slideshow {
  position: relative;
  width: 100%;
  height: clamp(320px, 70vh, 850px);
  overflow: hidden;
  background-color: #111111;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-button {
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;

  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);

  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;

  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.slide-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.slide-previous {
  left: 1.5rem;
}

.slide-next {
  right: 1.5rem;
}

.slide-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 0.65rem;

  transform: translateX(-50%);
}

.slide-indicator {
  width: 11px;
  height: 11px;
  padding: 0;

  border: 2px solid #ffffff;
  border-radius: 50%;

  background-color: transparent;
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.slide-indicator.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slideshow {
    height: clamp(280px, 58vh, 600px);
  }

  .slide-button {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .slide-previous {
    left: 0.75rem;
  }

  .slide-next {
    right: 0.75rem;
  }

  .slide-indicators {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .slideshow {
    height: 55vh;
    min-height: 260px;
    max-height: 500px;
  }

  .slide-button {
    width: 36px;
    height: 36px;
  }

  .slide-indicator {
    width: 9px;
    height: 9px;
  }
}
.home-content{

    width:100%;
    max-width:1600px;

    margin:50px auto;

    padding:0 5%;

    display:flex;
    gap:40px;

    align-items:flex-start;
    background-color: #151515;

}

.activities-panel{

    flex:1;
    min-width:320px;

}

.map-panel{

    flex:2;
    min-width:450px;

}

.activities-panel h2,
.map-panel h2{

    margin-bottom:20px;

    font-size:1.6rem;

    color:#fff;

}

.activities-table{

    width:100%;

    border-collapse:collapse;

}

.activities-table thead{

    background:#222;

}

.activities-table th{

    text-align:left;

    padding:15px;

    color:#fff;

}

.activities-table td{

    padding:15px;

    border-bottom:1px solid #333;

    color:#ddd;

}

.activities-table tbody tr:hover{

    background:#1c1c1c;

}

.map-panel iframe{

    width:100%;

    height:550px;

    border:none;

    border-radius:10px;

}

@media(max-width:1000px){

    .home-content{

        flex-direction:column;

    }

    .activities-panel,
    .map-panel{

        width:100%;
        min-width:unset;

    }

    .map-panel iframe{

        height:500px;

    }

}

@media(max-width:600px){

    .home-content{

        padding:0 20px;
        gap:30px;

    }

    .activities-table th,
    .activities-table td{

        padding:10px;
        font-size:.9rem;

    }

    .map-panel iframe{

        height:400px;

    }

}
.quick-links-section {
    width: 100%;
    padding: clamp(4rem, 8vw, 7rem) 5%;
    background-color: #151515;
}

.quick-links-header {
    width: min(760px, 100%);
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    text-align: center;
}

.quick-links-header .section-label {
    margin-bottom: 0.75rem;
    color: #d8b05a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
}

.quick-links-header h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.quick-links-header > p:last-child {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.7;
}

.quick-links-grid {
    width: min(1500px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    position: relative;
    min-height: 280px;
    padding: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;

    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    color: inherit;
    text-decoration: none;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.quick-link-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background-color: #d8b05a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.quick-link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 176, 90, 0.6);
    background-color: rgba(255, 255, 255, 0.045);
}

.quick-link-card:hover::before {
    transform: scaleX(1);
}

.quick-link-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216, 176, 90, 0.55);
    color: #d8b05a;

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
}

.quick-link-content h3 {
    margin-bottom: 0.85rem;
    color: #ffffff;
    font-size: 1.45rem;
}

.quick-link-content p {
    margin-bottom: 1.5rem;
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.65;
}

.quick-link-arrow {
    color: #d8b05a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
}

.quick-link-card:focus-visible {
    outline: 3px solid #d8b05a;
    outline-offset: 4px;
}

@media (max-width: 1100px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .quick-links-section {
        padding-inline: 1.25rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .quick-link-card {
        min-height: 230px;
        padding: 1.5rem;
        gap: 2rem;
    }
}

@media (max-width: 400px) {
    .quick-links-section {
        padding-inline: 0.9rem;
    }

    .quick-link-card {
        min-height: 215px;
        padding: 1.25rem;
    }

    .quick-link-content h3 {
        font-size: 1.3rem;
    }
}
.sponsors-section{

    width:100%;

    padding:90px 5%;

    background:#101010;

}

.sponsors-header{

    max-width:800px;

    margin:0 auto 60px;

    text-align:center;

}

.sponsors-header .section-subtitle{

    color:#d4af37;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.85rem;

    margin-bottom:10px;

}

.sponsors-header h2{

    color:#fff;

    font-size:2.6rem;

    margin-bottom:20px;

}

.sponsors-header p{

    color:#bdbdbd;

    line-height:1.8;

}

.sponsors-grid{

    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.sponsor-card{

    background:#181818;

    border:1px solid #2b2b2b;

    height:170px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    transition:.3s;

    text-decoration:none;

}

.sponsor-card:hover{

    transform:translateY(-6px);

    border-color:#d4af37;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.sponsor-card img{

    max-width:100%;

    max-height:90px;

    object-fit:contain;

    transition:.3s;

    filter:grayscale(100%) brightness(.9);

}

.sponsor-card:hover img{

    filter:none;

    transform:scale(1.05);

}

@media(max-width:900px){

    .sponsors-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .sponsors-section{

        padding:70px 20px;

    }

    .sponsors-header h2{

        font-size:2rem;

    }

    .sponsors-grid{

        grid-template-columns:1fr;

    }

    .sponsor-card{

        height:150px;

    }

}
.site-footer{

    background:#0b0b0b;

    border-top:1px solid #242424;

    margin-top:100px;

}

.footer-container{

    max-width:1500px;

    margin:auto;

    padding:70px 5%;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-column h3{

    color:#ffffff;

    margin-bottom:20px;

    font-size:1.3rem;

}

.footer-column p{

    color:#bdbdbd;

    line-height:1.8;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.25s;

}

.footer-links a:hover{

    color:#d4af37;

    padding-left:6px;

}

.footer-column a{

    color:#d4af37;

    text-decoration:none;

}

.footer-column a:hover{

    text-decoration:underline;

}

.footer-bottom{

    border-top:1px solid #242424;

    padding:25px 5%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    color:#8d8d8d;

    font-size:.9rem;

    margin:0;

}

.footer-bottom a{

    color:#d4af37;

    text-decoration:none;

}

.footer-bottom a:hover{

    text-decoration:underline;

}

@media(max-width:900px){

    .footer-container{

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }

    .footer-logo{

        margin:auto auto 20px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}
.about-text {
  margin: 5% 10% 5% 10%;
  text-align: justify;
}

/* ===========================
   DXCC SECTION
=========================== */

.dxcc-section {
    width: 100%;
    padding: clamp(3rem, 6vw, 5rem) 5%;
    background: #111111;
}

.dxcc-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* ===========================
   HEADING
=========================== */

.dxcc-heading {
    margin-bottom: 2rem;
}

.dxcc-eyebrow {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.dxcc-heading h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.dxcc-heading p {
    color: #bdbdbd;
    line-height: 1.8;
    max-width: 700px;
}

/* ===========================
   TABLE
=========================== */

.dxcc-table-wrapper {
    overflow-x: auto;
    border: 1px solid #2b2b2b;
    border-radius: 8px;
}

.dxcc-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #181818;
}

/* Header */

.dxcc-table thead th {
    background: #d4af37;
    color: #111111;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    white-space: nowrap;

    position: sticky;
    top: 0;
    z-index: 10;
}

/* Cells */

.dxcc-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #2f2f2f;
    color: #d5d5d5;
}

/* Zebra */

.dxcc-table tbody tr:nth-child(even) {
    background: #1d1d1d;
}

.dxcc-table tbody tr:hover {
    background: #252525;
}

/* Prefix */

.dxcc-prefix {
    color: white;
    font-weight: bold;
    white-space: nowrap;
}

/* Links */

.dxcc-table a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.dxcc-table a:hover {
    text-decoration: underline;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:900px) {

    .dxcc-section {
        padding: 70px 20px;
    }

    .dxcc-table th,
    .dxcc-table td {
        padding: 12px;
        font-size: .9rem;
    }

}

@media (max-width:600px) {

    .dxcc-heading h1 {
        font-size: 2rem;
    }

    .dxcc-heading p {
        font-size: .95rem;
    }

    .dxcc-table {
        min-width: 850px;
    }

}
/* ==========================================
   REPEATERS SECTION
========================================== */

.repeaters-section {
    width: 100%;
    padding: 80px 5%;
    background: #111111;
}

.repeaters-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* ==========================================
   HEADING
========================================== */

.repeaters-heading {
    margin-bottom: 40px;
}

.repeaters-eyebrow {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.repeaters-heading h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.repeaters-heading p {
    color: #bdbdbd;
    line-height: 1.8;
    max-width: 700px;
}

/* ==========================================
   TABLE
========================================== */

.repeaters-table-wrapper {
    overflow-x: auto;
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    background: #181818;
}

.repeaters-table {
    width: 100%;
    min-width: 1150px;
    border-collapse: collapse;
}

/* Header */

.repeaters-table thead th {

    position: sticky;
    top: 0;
    z-index: 10;

    background: #d4af37;
    color: #111111;

    padding: 15px;

    text-align: left;

    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    white-space: nowrap;

}

/* Cells */

.repeaters-table td {

    padding: 14px 15px;

    color: #d5d5d5;

    border-right: 1px solid #2f2f2f;
    border-bottom: 1px solid #2f2f2f;

}

.repeaters-table th:last-child,
.repeaters-table td:last-child {
    border-right: none;
}

.repeaters-table tbody tr:last-child td {
    border-bottom: none;
}

/* Zebra */

.repeaters-table tbody tr:nth-child(even) {
    background: #1d1d1d;
}

.repeaters-table tbody tr:hover {
    background: #252525;
}

/* Frequency */

.repeater-frequency {
    color: #ffffff;
    font-weight: bold;
    white-space: nowrap;
}

/* Callsign */

.repeater-call {
    color: #ffffff;
    font-weight: bold;
    white-space: nowrap;
}

/* Status */

.repeater-status {

    display: inline-block;

    padding: 5px 12px;

    border-radius: 25px;

    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: 1px;

}

.status-online {

    background: rgba(46, 204, 113, .15);
    color: #2ecc71;
    border: 1px solid #2ecc71;

}

.status-offline {

    background: rgba(231, 76, 60, .15);
    color: #e74c3c;
    border: 1px solid #e74c3c;

}

/* Source */

.repeaters-source {

    margin-top: 20px;

    color: #888888;

    font-size: .85rem;

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:900px) {

    .repeaters-section {
        padding: 70px 20px;
    }

    .repeaters-heading h1 {
        font-size: 2rem;
    }

    .repeaters-table th,
    .repeaters-table td {

        padding: 12px;

        font-size: .9rem;

    }

}

@media (max-width:600px) {

    .repeaters-table {
        min-width: 1050px;
    }

}

/* ==========================================
ACTIVITY SECTION
========================================== */

.activity-content {
width: 100%;
padding: clamp(4rem, 7vw, 7rem) 5%;
background-color: #111111;
}

.activity-container {
width: min(1200px, 100%);
margin: 0 auto;
}

/* ==========================================
PAGE HEADER
========================================== */

.activity-page-header {
max-width: 760px;
margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.activity-eyebrow {
margin: 0 0 0.65rem;
color: #d4af37;
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.18rem;
text-transform: uppercase;
}

.activity-page-header h1 {
margin: 0 0 1rem;
color: #ffffff;
font-size: clamp(2.3rem, 5vw, 4rem);
line-height: 1.08;
}

.activity-page-header > p:last-child {
max-width: 700px;
margin: 0;
color: #bdbdbd;
font-size: 1.05rem;
line-height: 1.8;
}

/* ==========================================
ACTIVITY LIST
========================================== */

.activity-list {
display: grid;
gap: 2rem;
}

.activity-card {
overflow: hidden;
border: 1px solid #2c2c2c;
border-radius: 12px;
background-color: #181818;
box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.activity-card-header {
padding: clamp(1.4rem, 3vw, 2.2rem);
border-bottom: 1px solid #2c2c2c;
}

.activity-date {
display: inline-block;
margin-bottom: 0.75rem;
color: #d4af37;
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.08rem;
text-transform: uppercase;
}

.activity-card h2 {
margin: 0;
color: #ffffff;
font-size: clamp(1.45rem, 3vw, 2.15rem);
line-height: 1.25;
}

/* ==========================================
FEATURED IMAGE
========================================== */

.activity-featured-image {
margin: 0;
background-color: #0d0d0d;
}

.activity-featured-image img {
display: block;
width: 100%;
max-height: 620px;
object-fit: cover;
}

/* ==========================================
IMAGE GALLERY
========================================== */

.activity-gallery {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 4px;
padding: 4px;
background-color: #0d0d0d;
}

.activity-gallery figure {
position: relative;
min-height: 230px;
margin: 0;
overflow: hidden;
background-color: #151515;
}

.activity-gallery img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.35s ease;
}

.activity-gallery figure:hover img {
transform: scale(1.04);
}

/* ==========================================
ACTIVITY TEXT
========================================== */

.activity-text {
padding: clamp(1.4rem, 3vw, 2.2rem);
}

.activity-text p {
margin: 0 0 1rem;
color: #c8c8c8;
font-size: 1rem;
line-height: 1.85;
}

.activity-text p:last-child {
margin-bottom: 0;
}

/* ==========================================
EXTERNAL LINK
========================================== */

.activity-external-link {
display: inline-flex;
align-items: center;
min-height: 42px;
padding: 0.65rem 1rem;
border: 1px solid #d4af37;
border-radius: 5px;
color: #d4af37;
font-weight: 700;
text-decoration: none;
transition:
background-color 0.25s ease,
color 0.25s ease;
}

.activity-external-link:hover,
.activity-external-link:focus-visible {
background-color: #d4af37;
color: #111111;
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 900px) {
.activity-content {
padding-inline: 20px;
}

.activity-gallery {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.activity-gallery figure {
min-height: 210px;
}
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 600px) {
.activity-content {
padding-inline: 1rem;
}

.activity-list {
gap: 1.4rem;
}

.activity-card {
border-radius: 8px;
}

.activity-gallery {
grid-template-columns: 1fr;
}

.activity-gallery figure {
min-height: 260px;
}

.activity-featured-image img {
max-height: 430px;
}

.activity-page-header h1 {
font-size: 2.25rem;
}

.activity-card h2 {
font-size: 1.45rem;
}

.activity-text p {
font-size: 0.96rem;
line-height: 1.75;
}
}
