:root {
    --green-dark: #0f3b2e;
    --green-main: #1e5a43;
    --gold: #d4af37;
    --gold-light: #e6c766;
    --white: #f9f9f9;
}
/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--green-dark);
    color: var(--white);
	max-width: 1100px;
}

/* CONSTRAINED CONTENT WIDTH */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px; /* key for mobile spacing */
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(15,59,46,0.95);
    border-bottom: 2px solid var(--gold);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: left;
	flex: 1;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 17px;
}
.socialmedia {
    max-width: 200px;
    margin-left: 10px;
	}

header a {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 20px;
    text-decoration: none;
}

nav a {
    margin-left: 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

form {
width: 350px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
/*background-color: #f9f9f9;*/
}

label {
display: block;
margin-bottom: 8px;
font-weight: bold;
text-color: #0f3b2e;
}

.textarea {
/*width: 100%;*/
height: 100px;
width: 400px;
padding: 10px;
margin-bottom: 75px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;

}

.textarea2 {
/*width: 100%;*/
height: 100px;
width: 400px;
padding: 10px;
margin-bottom: 75px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;

}

.input-field, .text {
width: 200px;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

.email-input-field {
    font-family: Arial, sans-serif; /* Match font family */
    font-size: 14px;               /* Match font size */
	width: 305px;
height: 35px;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

.subject-input-field {
    font-family: Arial, sans-serif; /* Match font family */
    font-size: 14px;               /* Match font size */
	width: 305px;
height: 35px;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

.message-input-field {
    font-family: Arial, sans-serif; /* Match font family */
    font-size: 14px;               /* Match font size */
	width: 305px;
height: 100px;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

.input-field:focus, .textarea:focus {
border-color: #007BFF;
outline: none;
box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

.submit-btn {
width: 100%;
padding: 10px;
background-color: #997BFF;
color: white;
border: none;
cursor: pointer;
font-size: 16px;
}

.submit-btn:hover {
background-color: #0056b3;
}

/* campaign-banner */
/* campaign-banner IMAGE */
.campaign {
    height: 275px;

    background-color: var(--green-dark);
    background-image: url('carmen_defranco_for_judge.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.bigBlurredImage {
    position: relative;
    height: 380px;
    background-color: #0f3b2e;
    overflow: hidden;
}

.bigBlurredImage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('image.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.bigBlurredImage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top,    #0f3b2e, transparent 20%, transparent 80%, #0f3b2e),
        linear-gradient(to right,  #0f3b2e, transparent 20%, transparent 80%, #0f3b2e);
}

/* GOLD DIVIDER (SAFE) */
.campaign-divider {
    height: 4px;
    background: var(--gold);
    width: 100%;
}

/* OPTIONAL: add breathing room so it feels premium */
.campaign-cta {
    padding-top: 40px;
}

/* CTA */
.campaign-cta {
    text-align: center;
    padding: 20px 20px 20px;
}

.cta-label1 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.cta-label2 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    padding: 14px;
/*    width: 100%;
    max-width: 500px;
	*/
	width:350px;
    margin: 10px auto;
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.bob-the-button {
    background: var(--gold);
    color: black;
    padding: 14px;
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.event-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 400px;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
    border: 2px solid var(--gold);
    color: white;
}

.event-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  text-decoration: none;
}

.event-title {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: bold;
  text-decoration: none;
}

.event-date {
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
}

.event-address {
  font-size: 10px;
  line-height: 1.3;
  text-decoration: none;
}

.event-icon {
  width: 120px;
  height: 120px;
  background-image: url('buy-tickets-yellow.png');
  background-size: cover;
  background-position: center;
   cursor: pointer;
  object-fit: contain;
  flex-shrink: 0;
  text-decoration: none;
}

.event-icon:hover {
  background-image: url('buy-tickets-green.png');
}
.btn-primary {
    background: var(--gold);
    color: black;
}

.btn-donate {
    background: var(--gold);
	font-weight: heavy;
    color: black;
}

.btn-secondary {
    border: 2px solid var(--gold);
    color: white;
}

.btn-text-huge {
    font-size: 16px;
	font-weight: bold;
}

.btn-text-large {
    font-size: 13px;
}

.btn-text-small {
    font-size: 10px;
    color: var(--gold);
}


/* Sections */
section {
    padding: 20px;
}

.section-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

/* About  */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
	align-items: center;
    text-align: justify;
	font-size: 14px;
}

.about-left img {
    float: left;
    width: 100%;
    max-width: 170px;
	margin: auto;
    margin-right: 30px;
	margin-bottom: 15px;
/*   border: 1px solid var(--gold); */
}

.about-right btn {
    float: right;
    width: 100%;
    max-width: 170px;
	margin: auto;
    margin-right: 30px;
	margin-bottom: 15px;
/*   border: 1px solid var(--gold); */
}



.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
	align-items: center;
    text-align: justify;
	font-size: 14px;
}

.about-right img {
    float: right;
    width: 100%;
    max-width: 170px;
    margin: auto;
    margin-left: 30px;
    margin-bottom: 15px;
/*   border: 1px solid var(--gold); */
}


/* Experience */
.experience {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card {
    background: var(--green-main);
    padding: 20px;
    border: 1px solid var(--gold);
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px 15px;
    border-top: 2px solid var(--gold);
    font-size: 13px;
}

/* TABLET+ */
@media (min-width: 768px) {
	.logo {
        text-align: left;
    	flex: 1;
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: 24px;
    }
    .campaign {
/*        height: 70vh;*/
        height: 380px;
    
        background-color: var(--green-dark);
        background-image: url('carmen_defranco_for_judge.jpg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .section-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    }
	
    nav a {
        font-size: 16px;
    }

    form {
    width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    /*background-color: #f9f9f9;*/
    }
    .email-input-field {
    width: 550px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }
    
    .subject-input-field {
    width: 550px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }
    
    .message-input-field {
    width: 550px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }
	
    .btn {
        display: inline-block;
        width: 300px;
        padding: 14px 26px;
    }

    .about {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    .about-left {
        display: flex;
        flex-direction: column;
        gap: 20px;
    	align-items: center;
        text-align: justify;
    	font-size: 14px;
    }
    
    .about-left img {
        float: left;
        width: 100%;
        max-width: 290px;
    	margin: auto;
        margin-right: 30px;
        margin-bottom: 15px;
        margin-top: 15px;
    /*   border: 1px solid var(--gold); */
    }
    
    
    .about-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
    	align-items: center;
        text-align: justify;
    	font-size: 14px;
    }
    
    .about-right img {
        float: right;
        width: 100%;
        max-width: 290px;
        margin: auto;
        margin-left: 30px;
        margin-bottom: 15px;
        margin-top: 15px;
    /*   border: 1px solid var(--gold); */
    }

    .experience {
        flex-direction: row;
    }

    .card {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    form {
    width: 800px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    /*background-color: #f9f9f9;*/
    }
    .email-input-field {
    width: 750px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }
    
    .subject-input-field {
    width: 750px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }
    
    .message-input-field {
    width: 750px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }
	.logo {
        text-align: left;
    	flex: 1;
        font-family: 'Cinzel', serif;
        color: var(--gold);
        font-size: 24px;
    }
    .campaign {
        height: 70vh;
/*        height: 380px; */
    
        background-color: var(--green-dark);
        background-image: url('carmen_defranco_for_judge.jpg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .section-title {
        font-family: 'Cinzel', serif;
        color: var(--gold);
        text-align: center;
        margin-bottom: 30px;
        font-size: 36px;
    }
    nav a {
        font-size: 16px;
    }

/*
    .btn {
		width: 200px;
        display: inline-block;
        width: auto;
        padding: 14px 26px;
    }
*/
    .about {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    .about-left {
        display: flex;
        flex-direction: column;
        gap: 20px;
    	align-items: center;
        text-align: justify;
    	font-size: 15px;
    }
    
    .about-left img {
        float: left;
        width: 100%;
        max-width: 517px;
    	margin: auto;
        margin-right: 30px;
    /*   border: 1px solid var(--gold); */
    }
    
    
    .about-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
    	align-items: center;
        text-align: justify;
    	font-size: 15px;
    }
    
    .about-right img {
        float: right;
        width: 100%;
        max-width: 517px;
        margin: auto;
        margin-left: 30px;
    /*   border: 1px solid var(--gold); */
    }

    .experience {
        flex-direction: row;
    }

    .card {
        flex: 1;
    }
}