/* Global styles */
.custom-checkbox {

    margin-left: 25px;
}

.searchbar {
    background-color:#181818;
    padding:10px;

}

.plantlist{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    align-items:center;
    margin:0;
    padding:0;
    list-style:none;
}

.plant{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:200px;
    height:200px;
    margin:10px;
    padding:10px;
    border-radius:10px;
    background-color:#000000;
    box-shadow:0 0 10px rgba(0,0,0,0.3);
    transition:all 0.3s ease-in-out;
}

.plantimg {
    /* Needs to be a square */
    width:100px;
    height:100px;
    border-radius:50%;
    margin-bottom:10px;

}

html,
body {
    font-family: proxima-nova, sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
.h1 {
    font-family: quincy-cf, serif;
    font-size: 3em;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 0.9;
}

h2,
.h2 {
    font-family: quincy-cf, serif;
    font-size: 1.5em;
    margin: 0 0 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

h3,
.h3 {
    font-family: brandon-grotesque, sans-serif;
    font-size: 1.1em;
    margin: 0 0 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h4,
.h4 {
    font-family: quincy-cf, serif;
    font-size: 1em;
    font-weight: 700;
    margin: 0 0 5px;
    letter-spacing: .5px;
}

h5,
.h5 {
    font-family: brandon-grotesque, sans-serif;
    font-size: 1.15em;
    margin: 0 0 0;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    font-family: proxima-nova, sans-serif;
    font-size: 1em;
    margin: 0 0 10px;
    line-height: 1.5;
}

p a {
    font-weight: 900;
    text-decoration: none;
    color: inherit;
}

body {
    font-family: Arial, sans-serif;
    background-color: #003d57;
    color: #fff;
    margin: 0;
    font-family: "proxima-nova", sans-serif;
}

a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.playoverlay {
  z-index:1; 
  position:absolute; 

  font-size:8em !important; 
  opacity:0.3;
}

/* Header styles */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003d57;
    padding: 10px 20px;
    font-family: "brandon-grotesque", sans-serif;
}

.nav {
    display: none;
}

.nav li {
    display: inline-block;
    margin-right: 20px;
}

.nav li:last-child {
    margin-right: 0;
}


/* Mobile menu styles */

.menu-btn {
    display: block;
    background-color: #1c1c1c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 20px;
    right: 20px;
    background-color: #1c1c1c;
    opacity: 0.75;
    padding: 10px;
    text-align: center;
}

.mobile-nav li {
    display: block;
    margin-bottom: 10px;
}

.mobile-nav li:last-child {
    margin-bottom: 0;
}


/* Content styles */

.content {
    padding: 20px;
}


/* Footer styles */

.footer {
    background-color: #003d57;
    padding: 10px 20px;
    text-align: center;
}


/* Dark mode styles */

body.dark {
    background-color: #003d57;
    color: #fff;
}

.header.dark {
    background-color: #003d57;
}

.nav li.dark a {
    color: #fff;
}

.menu-btn.dark {
    background-color: #181818;
}

.mobile-nav.dark {
    background-color: #181818;
}

.footer.dark {
    background-color: #181818;
    color: #fff;
}

.video-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.video-item {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 200px;
    border-radius: 20px;
    margin-right: 10px;
    margin-top:10px;
}

.video-item img {
    display: block;
    width: 100%;
    height: auto;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 10px;
    text-align: center;
    opacity: .8;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-title {
    opacity: 1;
}

.coll-info {
    text-align: left;
}

.coll-name {
    font-family: "brandon-grotesque", sans-serif;
    text-align: left;
    font-size: 1.2em;
}

.coll-desc {
    text-align: left;
    font-size: 0.8em;
}

.premium-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
}

.content {
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px;
}

input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}



.error-message {
    color: red;
    margin-top: 20px;
}

.video-player {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh; */
}

.video-embed {
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-embed {
    width: 100vw;
    height: calc(100vw/1.77);
}


/* Media queries */

@media (min-width: 768px) {
    .nav {
        display: block;
    }
    .menu-btn {
        display: none;
    }
    .mobile-nav {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .mobile-nav {
        display: none;
    }
    .menu-btn.active {
        background-color: #000;
    }
    .menu-btn.active+.mobile-nav {
        display: block;
    }

    .video-item {
        position: relative;
        display: block;
        overflow: hidden;
        max-width: 150px;
        border-radius: 20px;
        margin-right: 10px;
        margin-top:10px;
    }
}

