* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: system-ui, Arial, sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3D4F3;
    border-bottom: 3px solid #79bfb3;
    padding: 14px 16px;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar-logo a{
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 12px;
}

#logo-text {
    font-size: 20px;
    font-weight: bold;
}

.navbar-btns {
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.btn {
  border: none;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  border: 3px solid rgba(20,20,20,0.10);

  transition: filter 0.15s ease, transform 0.05s ease;
}

.btn:hover {
  filter: brightness(0.95);
}

.btn:active {
  filter: brightness(0.90);
  transform: translateY(1px);
}

/* Background */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding-top: 70px;
    
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                      url('../images/background.jpg'); 
    background-size: cover;
    background-position: center;
}

/* Main box */
.hero-card {
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 60px;
    align-items: center;

    border-radius: 20px;
    border-style: solid;
    border-color: #79bfb3;
    border-width: 3px;
}

.hero-card h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-card h1 span {
    font-style: italic;
}

.hero-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
}

/* Get started button */
.hero-button {
    text-decoration: none;
    background-color: #F3D4F3;
    color: #333;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    background-color: #efcaef;
}
