/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3 {
    color: #1a1a1a;
}

/* Header */
header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 3rem;
    color: #fff;
}

header p {
    font-size: 1.2rem;
}

/* Main Content */
main {
    padding: 2rem 0;
}

section {
    padding: 4rem 0;
}

#hero {
    background-color: #fff;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Features */
#features {
    text-align: center;
    background-color: #f9f9f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Gallery */
#gallery {
    text-align: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Contact */
#contact {
    background-color: #fff;
    text-align: center;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}

a {
  color: #3498db;          /* Changes the text color */
  text-decoration: none;   /* Removes the default underline */
  font-weight: bold;       /* Makes the text bold */
}

a:hover {
  color: #1abc9c;
  text-decoration: underline; /* Adds underline back on hover */
}
