/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    color: white;
    position: sticky;
    top: 0;
}

.navbar nav {
    display: flex;
    align-items: center;
}

.navbar nav a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
}

.navbar nav input {
    padding: 5px 10px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(4px);
}

.hero1 h1 {
    font-size: 5rem;
    color: lightgreen;
    font-family: 'Oswald', sans-serif;
    margin-left: 200px;
    margin-right: 200px;
    font-weight: 500;
}

.hero2 h1 {
    font-size: 5rem;
    color: rgb(255, 255, 255);
    font-family: 'Anton', sans-serif;
    margin-left: 300px;
    margin-right: 200px;
}

/* Plant Cards */
.plant-grid {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 170px;
    padding: 40px;
}

.plant-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    width: 359px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Start with content on top */
    height: 100%; /* Make cards equal height */
}

.plant-card img {
    width: 100%;
    border-radius: 10px;
}

.btn-group {
    margin-top: auto; /* Push buttons to the bottom */
    display: flex;
    gap: 10px;
}

.btn-group button {
   border:none;
    color: white;
   background-color: rgb(204, 204, 205);
    border-radius:4px;
    padding: 4px 8px;
    margin: 15px;
    cursor: pointer;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;   /* centers the text */
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.5); /* optional blur-like dark background */
    color: white;
    position: relative; /* or fixed if you want it always at bottom */
    bottom: 0;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Start with content on top */
    height: 100%; /* Make cards equal height */
}

.card-buttons {
    margin-top: auto; /* Push buttons to the bottom */
    display: flex;
    gap: 10px;
}

.card-icon {
    padding-top: 100px;
    margin-top: 100px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.icon-buttons {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 5px;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.sketchfab-embed-wrapper iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}
