/* Ryder Cup Theme - Modern Simple Layout Extensions */
/* Import main layout styles (same as base simple_layout.css does) */
@import url('main_layout.css') screen;

/* Import Ryder Cup fonts */
@import url('fonts.css');

/* Import main styles, override simple layout-specific properties here */
@import url("main.css");

/* ========================================
   RYDER CUP BANNER HEADER
   ======================================== */
.ryder-cup-banner {
  background: var(--rc-core-navy);
  color: var(--rc-white);
  padding: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 20, 54, 0.3);
  position: relative;
  overflow: visible;
}

.ryder-cup-banner__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.ryder-cup-logo {
  flex-shrink: 0;
}

.ryder-cup-logo .logo {
  height: 160px;
  width: auto;
}

.ryder-cup-event-info {
  flex-grow: 1;
}

.event-title {
  font-family: var(--secondary-font), serif;
  font-size: 2rem;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
  color: var(--rc-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-location {
  font-family: var(--primary-font), sans-serif;
  font-size: 1.2rem;
  margin: 0;
  color: var(--light-blue);
  font-weight: normal;
}

@media (min-width: 768px) {
  .ryder-cup-banner {
    padding: 2rem 0;
  }

  .event-title {
    font-size: 2.5rem;
  }

  .event-location {
    font-size: 1.5rem;
  }
}
