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

body {
    font-family: tahoma, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #FFE0E0, #dfeaf5, #D7EBFF);
    color: black;
    text-align: left;
}

main {
    max-width: 545px;
    margin: 0 auto;
}

header {
    background-color: #163172;
    color: blue;
    padding: 20px;
    text-align: center; 
    position: sticky;
    top: 0;
    z-index: 10;
}

header img {
    max-width: 100%; 
    height: auto; 
    margin-bottom: 15px;
}



header nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header nav ul li {
    display: inline;
    margin-right: 12px;
    
}

header nav ul li a {
    color: navy;
    background-color: lightsteelblue;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid aliceblue;
    border-radius: 5px;
    padding: 5px 9px; 
    margin-bottom: 10px;
    display: inline-block;
    
}

header nav ul li a:hover {
    color:navy;
    background-color: #3B97D6;
    font-size: 18px;
}

header nav ul li a.active {
    color:aliceblue;
    background-color: #3B97D6;
    font-size: 18px;
    border: 2px solid white;
}


footer {
    background-color: #163172;
    color: aliceblue;
    text-align: center;
    padding: 10px;
}

.hero {
    text-align: left;
    padding: 50px 20px;
    margin-bottom: 0;
}

.hero h1 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    line-height: 1.2;

}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 10px; 
}

.hero p {
    font-size: 1.0rem;
    margin-bottom: 35px ;
 
}

.cta-button {
    background-color: forestgreen;
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    text-decoration: underline;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: green;
    padding: 16px 26px;
    font-size: 1.3rem;
}

.container {
    width: 100%; 
    max-width: 800px; 
    margin: 0 auto; 
    background-color: lightsteelblue; 
    padding: 20px; 
    box-shadow: 0px 4px 140px rgba(0, 0, 0, 0.1); 
    border-radius: 5px;
    display: flex;              
  justify-content: space-between;  
  gap: 20px;  
}


.sponsor {
    text-align: center;    
    color:white;
}


.sponsor img {
    display: inline-block;  
    margin: 0 auto;         
    max-width: 100%;        
}

.left-container, .right-container {
    flex: 1;                    
    background-color: aliceblue;  
    padding: 20px;              
    border-radius: 5px;         
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.day {
    background-color: aliceblue;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
}

.day h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.day ul {
    list-style-type: none;
    padding-left: 0;
}

.day li {
    margin-bottom: 15px;
}

.day li strong {
    font-weight: bold;
    color: #34495e;
}

.day li span {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.day li i {
    font-style: italic;
    color: #2980b9;
}

.program-overview {
    background-color: aliceblue;
    padding: 20px;
    border-radius: 8px;
}

.day-summary {
    margin-bottom: 15px;
}

.day-summary h4 {
    font-size: 1.2rem;
    color: #2980b9;
}

.day-summary p {
    font-size: 1rem;
    color: #34495e;
}

li {
    list-style-position: inside;  
}

a.rug-link {
    color: navy;
    text-decoration: underline;
    background-color: transparent !important;
    padding: 2px 4px;
}

.map-container iframe {
    width: 100%;  
    height: 400px;  
    border-radius: 10px; 
    text-align: center;
}

.signup-form {
    background-color: aliceblue;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.signup-form h2 {
  text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: black;
}

.signup-form-wrapper {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
}

.signup-form input, .signup-form select, .signup-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.signup-form button {
    width: 100%;
    padding: 12px;
    background-color: forestgreen;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signup-form button:hover {
    background-color: green;
}

.signup-form textarea {
    height: 100px;
}

.signup-form select {
    width: 100%;
}


.contact-info {
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin: 10px 0 5px;
}

form input, form textarea {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  padding: 10px;
  background-color: forestgreen;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: green;
}

.social-media {
  margin-top: 20px;
}

.social-media a {
  margin-right: 10px;
}

.social-media img {
    border-radius: 17px;      
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 20px;
}

.sponsor-card {
  background-color: aliceblue;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sponsor-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.sponsor-card h3 {
  font-size: 1.5rem;
  margin: 10px 0 5px;
  color: black;
}

.sponsor-card p {
  font-size: 1.0rem;
  color: black;
    margin-bottom: 10px;
}


.sponsors-page .sponsor-grid {
  margin-top: 0;
}

.sponsors-page .hero {
  padding-bottom: 10px;
  margin-bottom: 0;
}

.sponsors-page .sponsor-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.sponsors-page .sponsor-slider::-webkit-scrollbar {
  height: 8px;
}

.sponsors-page .sponsor-slider::-webkit-scrollbar-thumb {
  background-color: #3B97D6;
  border-radius: 10px;
}

.sponsors-page .sponsor-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background-color: aliceblue;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 450px;
}

.sponsors-page .sponsor-card img {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  max-height: 150px;
}

.sponsors-page .sponsor-card:hover {
  transform: scale(1.03);
}

.sponsors-page .scroll-hint {
  text-align: center;
  font-size: 0.95rem;
  font-style: italic;
  color: #333;
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.sponsor img {
  height: 100px;             
  width: auto;
  object-fit: contain;
  margin: 10px;
  vertical-align: middle;
}






