/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
header {
    background-color: #222;
    padding: 1rem;
    color: #fff;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.btn-primary {
    background-color: #ff7f50; /* New contrasting color */
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff6347; /* Darker shade on hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/asmr-background.jpg') no-repeat center center/cover;
    height: 80vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.features-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* Get Started Section */
.get-started {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #eaf8f9;
}

.get-started h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.get-started p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.contact a {
    color: #ff7f50;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    color: #680000;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

/* Form styling inside the modal */
.modal-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ff7f50; /* Theme color */
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
}

.modal-content label {
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

.modal-content input[type="text"],
.modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.modal-content input[type="submit"] {
    margin-top: 20px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ff7f50;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-content input[type="submit"]:hover {
    background-color: #ff6347;
}

/* Instructional text styling */
.form-instruction {
    font-size: 0.9em; /* Smaller than main text */
    color: #777; /* Light gray color */
    margin-bottom: 20px; /* Space below the text */
    text-align: center;
    line-height: 1.4;
}
