/* :root {
    --primary: #21543F;
    --secondary: #71C5E8;
} */

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

body {
    font-family: 'Times New Roman', Times, serif;
}

.active {
    border-bottom: 2px solid white;
}


/* FLEX */
/* row direction */
header,
.header-content, 
footer, 
ul,
#about,
.programming-grid,
.seminar-main,
.location-grid {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.section-header {
  position: relative;
}

/* column direction */
.hero-content,
#details.card-grid,
.sponsor-card,
.footer-nav-bar .nav-list {
    display: flex;
    flex-direction: column;
}

/* TEXT */
h1 {
    font-size: 3.052rem;
    font-weight: bolder;
}

h2 {
    font-size: 2.441rem;
    color: #71C5E8;
}

h3 {
    font-size: 1.953rem;
}

h4 {
    font-size: 1.563rem;
}

h5 {
    font-size: 1.25rem;
}

h6, p, a {
    font-size: 1em;
}

p {
    line-height: 1.4rem;
}


/* LINKS */
a {
    text-decoration: none;
    color: white;
}

a:visited {
    color: inherit;
}

/* LISTS */
li {
    list-style: none;
    margin: 1.5em;
}

header,
footer {
    justify-content: space-between;
    width: 100vw;
    padding: 0em 2em;
}


/* BUTTON */
button {
    padding: 1em;
    border: none;
    width: 175px;
    border-radius: 3em;
    font-weight: 700;
    margin-right: 10px;
}


.primary {
    background: #21543F;
    border: solid 3px #21543F;
    color: white;
}

.primary:hover {
    background: white;
    color: #21543F;
}

.secondary {
    border: solid 3px #21543F;
    background: white;
    color: #21543F;  
}

.secondary:hover {
    border: solid 3px #21543F;
    background: #21543F;
    color: white;
}

.primary-white {
    border: solid 3px #21543F;
    background: white;
    color: #21543F;  
}

.primary-white:hover {
    border: solid 3px white;
    background: #21543F;
    color: white;
}

/* HEADER */
header {
    background-color: #21543F;
    color: white; 
}

.header-content > * {
    margin: 0 3em;
}

.logo {
    width: 2.4em;
}

header .nav-link {
    padding: .25em 0;
}
.nav-link, 
.social-media-bar a i {
    color: white;
}

/* SOCIAL MEDIA BAR */
.social-media-bar > * {
    font-size: 1.7em;
    margin: 0 .10em;
}

footer .social-media-bar a i {
    color: #21543F;
}

/* HERO */
.hero {
    height: 75vh;
    background-image: url(imgs/picture3.jpg);
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    width: 86%;
    margin: auto;
    top: 200px;
    text-align: center;
    color: white;
    z-index: 10;
}

.hero-content > * {
    margin: 10px 0;
    text-shadow:rgb(105, 105, 105) 2px 1px 5px;
}


/* FOOTER */
footer {
    position: relative; 
    bottom: 0;
    padding: 1em 2em;
    background: #f3f6f4;
}

.footer-nav-bar .nav-list {
    align-items: flex-start;
}
.footer-nav-bar .nav-list li {
    margin: 1px;
}

footer .number i,
footer .email i {
    margin: .5em;
    color: #21543F;
}
footer .number a,
footer .email a {
    text-decoration: underline;
    color: #21543F;
}

/* ================================= PAGES START HERE ================================= */
.seminar-main {
    padding: 4em;
}

/* HOME */
#about .section-header,
#about #about-p {
    width: 50vw;
}


#about .section-header, #about-p {
    padding: 3em;
}

#about-p {
    color: white;
    background-color: #21543F;
}

#sponsors {
    position: relative;
    top: 25px;
    margin: 2em 0;
}

#sponsors .link {
    margin: 1em 0;
    text-decoration: underline;
}
.sponsor-card {
    align-items: center;
}

#sponsors .sponsor-card img {
    width: 25vw;
}

#sponsors .sponsor-card .cta {
    position: relative;
    top: 50px;
}

/* SEMINAR */
#details > * {
    margin: 2em;
}

.description {
    width: 40vw;
}

.detail-tbl {
    display: grid; 
    grid-template-columns: 100px 1fr;
    gap: 10px;
}

/*  PROJECTS */
.project-coming-soon {
    width: 50%;
    text-align: center;
    margin: 2em auto;
}

#hotels {
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#hotels p {
    margin-bottom: 1em;
}
#hotels p a{
    color: black;
    
}
#hotels p a:hover{
    text-decoration: underline;  
}
/*  CONTACT */
.contact-main {
    background-color: #21543F;
    padding: 1em;
    width: 100vw;
}

.contact-main h3 {
    text-align: center;
    color: white;
    margin: .25em auto;
}

.contact-info {
    background-color: #21543F;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1.5em;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info .contact, 
.contact-info .contact a{
    color: white;
}

.contact-info .contact a{
    text-decoration: underline;
}

.contact span i {
    margin: 0 .5em;
}


/* 
.contact-form,
.registration-form {
    display: flex;
    justify-content: space-evenly;
    background-color: white;
    margin: 1.5em;
}

.contact-form .copy .cta,
.registration-form .copy .cta {
    display: flex;
    flex-direction: column;
    margin: 10px 0px;
}

.contact-form .copy .cta > *,
.registration-form .copy .cta > * {
    margin: .5em 0;
}

.contact-form form input, 
.contact-form textarea,
.registration-form form input,
.registration-form form select{
    margin-bottom: 20px;
}

.contact-form input[type="text"]{
    width: 300px;
    height: 25px;
}

.registration-form input[type="text"] {
    width: 500px;
    height: 25px;
}

.contact-form input[type="submit"],
.registration-form input[type="submit"] {
    width: 100px;
    padding: 1em;
    border: 3px solid #71C5E8; 
    color:white;
    background: #71C5E8;
    font-weight: bold;
}

.contact-form input[type="submit"]:hover,
.registration-form input[type="submit"]:hover {
    border: 3px solid #71C5E8; 
    color:#71C5E8;
    background: white;
    cursor: pointer;
}

.registration-form {
    align-items: flex-start;
    margin: 3em;
}
.registration-form .copy > * {
    margin-bottom: 1em;
}
.register-social {
    display: flex;
    align-items: center;
    margin: 5em 0em;
}

.register-social span i {
    margin-right: .25em;
}

.register-social i,
.register-social .social-media-bar a i {
    color: #71C5E8;
}

.register-social .social-media-bar {
    margin: 0em 2em;
}

.output {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #71C5E8;
    padding: 2em;
    border-radius: 2em;
}

.output #thankyou {
    text-align: center;
}

.output > * {
    margin: 2em 0em;
}

.output-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
}

.output-grid p:nth-child(odd) {
    font-weight: bold;
    color: white;
}

.output-list {
    display: block;
}

.output-list li { 
    margin: 0;
    list-style-type: disc;
}



.errMsg {
    display: block; 
    background-color: white; 
    color: #ff6600; 
    font-size: 0.8em; 
    padding: 2px; 
    position: relative; 
    left: 0px;
} */
