/* Nav Styles */
.top-navigation {
    background-color: #f2f2f2
    padding: 10%;
}

.top-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.top-navigation li {
    margin: 0 10px;
}

.top-navigation a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

/* Hero Styles */

.hero-container {
    background-image: url(assets/hero.jpg);
    background-size: cover;
    background-position: center center;
    height: 400px;
    display: flex;
    align-items: top;
    justify-content: left;
}

.hero-content {
    text-align: center;
    color: $fff;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin: 10% 25% 0 0;
}

.hero-content p {
    font-size: 24px;
    margin: 15% 40% 0 0;
}

/* Body styles */

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    background-color: #f8f8f8;
}
body p {
    width: 75%;
    padding: 0% 5%;
}

.button-container {
    display: flex;
    justify-content: center;
}

.centered-btn {
    margin: 0 10px;
    height: 30px;
    border-radius: 4px;
    background-color: #ffa372;
    color: white;
    border: none;
    padding: auto;
    font-size: 16px;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.centered-btn:hover {
    background-color: #16a085;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

/* Links */

a {
    color: #007bff;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Navigation */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

nav a {
    margin-left: 1.5rem;
}

/* Main content */

main {
    max-width: 95%;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

#text-loop-container {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 75%;
    height: 50px;
    overflow: hidden;
}

#text-loop {
    white-space: nowrap;
    animation: text-loop 45s linear infinite;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-style: italic;
}

#text-loop-2 {
    white-space: nowrap;
    animation: text-loop 100s linear infinite;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.33rem;
    font-style: italic;
}

@keyframes text-loop {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

/* Forms */

form label {
    display: block;
    margin-bottom: .5rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: .5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: .25rem;
}

form input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: .25rem;
    padding: .5rem 1rem;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Footer */

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f8f8f8;
    border-top: 1px solid #ccc;
}
