/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

:root{
    --cchs-blue:#1867B2;
    --cchs-orange:#FE833E;
    --dark:#0f2540;
    --light:#ffffff;
}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#333;
}

header{
    background:var(--cchs-blue);
    color:white;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1rem 5%;
}

.logo{
    font-size:2rem;
    font-weight:bold;
    color:var(--cchs-orange);
}

nav ul{
    display:flex;
    list-style:none;
    gap:20px;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:bold;
}

nav a:hover{
    color:var(--cchs-orange);
}

/*.hero{
    background:linear-gradient(
        rgba(0,0,0,.5),
        rgba(0,0,0,.5)
    ),
    url('../images/reunion-hero.jpg');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}*/

.hero {
  background-image: url('../img/westin-marina.jpg'); /* ? Change this */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional */

  min-height: 60vh;           /* or 70vh – adjust as needed */
  padding: 60px 20px;         /* gives breathing room */
  display: flex;
  flex-direction: column;     /* ? This fixes the stacking */
  align-items: center;        /* centers horizontally */
  justify-content: center;    /* centers vertically */
  text-align: center;
  position: relative;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
}

/* Dark overlay for text readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* adjust 0.35–0.55 */
  z-index: 1;
}

/* Make sure content sits above the overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

/* Optional: Add some spacing between elements */
.hero h1, .hero h2, .hero p {
  margin: 0.4em 0;
}

.hero h1{
    font-size:4rem;
    margin-bottom:15px;
}

.hero h2{
    color:var(--cchs-orange);
    margin-bottom:15px;
}

.btn{
    display:inline-block;
    padding:12px 24px;
    background:var(--cchs-orange);
    color:white;
    text-decoration:none;
    border-radius:6px;
    margin-top:15px;
}

.btn:hover{
    background:#e36f22;
}

.section{
    padding:70px 10%;
}

.section-title{
    color:var(--cchs-blue);
    text-align:center;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
    overflow:hidden;
}

.card-content{
    padding:25px;
	text-align:center;
}

.card h3{
    color:var(--cchs-blue);
    margin-bottom:10px;
}

footer{
    background:var(--dark);
    color:white;
    text-align:center;
    padding:25px;
}

.form-container{
    max-width:800px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:10px;
}

input,
textarea,
select{
    width:100%;
    padding:12px;
    margin-top:5px;
    margin-bottom:15px;
}

button{
    background:var(--cchs-orange);
    color:white;
    border:none;
    padding:12px 25px;
    cursor:pointer;
}

button:hover{
    background:#e36f22;
}