@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/* Global Styles */

:root {
    --primary-font: 'sansation', sans-serif;
    --secondary-font: 'atkinson-hyperlegible-mono', monospace;
    --primary-color: #105f16;
    /* A shade of green */
    --secondary-color: #2a3232;
    /* A shade of purple */
    --font-color: #5e8d63;
    --background-image: url('../images/construction-site-night.jpg');

    /* Dark gray for text */
}

h1 {
    font-family: var(--primary-font);
    color: #FFFFF0;
}

body {
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

/* Navbar Styles */
#navbar {
    background-color: var(--primary-color);

}

#navbar .logo {
    width: 30px;
}

#link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-family: var(--secondary-font);
}

/* Index Styles */

.about {
    background: rgba(16, 95, 22, 0.2);
    /* #105f16 with 20% opacity */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about p {
    color: #FFFFF0;
    font-weight: bold;
    padding: 24px;
}

p {
    font-family: var(--secondary-font);
    color: #FFFFF0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-button a:hover {
    /* Hover effect for buttons */
    background-color: transparent;
    /* or any color you prefer */
    color: white;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

.hp-header {
    color: #FFFFF0;
    font-family: var(--primary-font);
    font-weight: bolder;
    font-size: 3rem;
}
/* Software Page Styles */

.base {
    /* From https://css.glass */
    background: rgba(16, 95, 22, 0.2);
    /* #105f16 with 20% opacity */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFFF0;
    font-family: var(--secondary-font);
}

.pro {
    /* From https://css.glass */
    background: rgba(16, 95, 22, 0.2);
    /* #105f16 with 20% opacity */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 24px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFFF0;
    font-family: var(--secondary-font);
}

.base-card {
    background: transparent;
    border: 0px;
    color: #FFFFF0
}

.base-card ul {
    list-style-type: disc;
    text-align: left;
}

.base-card h5 {
    font-size: 1.6rem;
    font-weight: bold;
}

.base h3 {
    font-size: 2rem;
    font-weight: bold;
}

.pro h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.pro p {
    color: #FFFFF0;
}

#register {
    font-family: var(--secondary-font);
    color: #FFFFF0;
    font-size: 1.2rem;
    font-weight: bold;
}

.btn-register {
    font-family: var(--secondary-font);
    font-size: 1rem;
    font-weight: bold;
    color: #FFFFF0;
    background-color: var(--primary-color);
}

.ps-header {
    color: #FFFFF0;
    font-family: var(--primary-font);
    font-weight: bolder;
    font-size: 3rem;
}

/* Register Page Styles */

.glass {
    background: rgba(16, 95, 22, 0.2);
    /* #105f16 with 20% opacity */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 24px;
    color: #FFFFF0;
}

.booking-form {
    font-family: var(--secondary-font);
    color: #FFFFF0;
    font-size: 1.5rem;
    font-weight: bold;
}

.glass h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

/* Footer Styles */
footer {
    color: whitesmoke
}

#media-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

#media-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

@media (min-width: 320px) and (max-width: 768px) {
    .about {
        padding: 16px 0px 24px 0px;
        margin-left: 12px;
        margin-right: 12px;
    }

    .cta-button {
        margin-top: 12px;
        margin-bottom: 12px;
    }
}

@media (max-width: 430px) {
  body {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }
  /* Adjust background properties for mobile devices */
  
}
