/* styles.css */

/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Header styles */
header {
    background-image: url("images/header-background.jpg");
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff5722;
}
/* Hero container styles */
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 75px 0;
}
/* Hero section styles */
#hero {
    padding: 10px 50px;
    text-align: center;
}

.hero-content {
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 36px;
    color: #ff5722;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-image img {
    max-width: 30%;
    height: auto;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e64a19;
}

.btn-glow {
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.7);
}

/* Sections styles */
#sections {
    padding: 10px 10px;
    text-align: center;

}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.section {
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section:hover {
    transform: translateY(-10px);
}

.section-icon img {
    max-width: 30%;
    height: auto;
    margin-bottom: 10px;
}

.section-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.section-content p {
    font-size: 16px;
    margin-bottom: 20px;
}
/*intro section styles*/

.intro-image img {
    max-width: 30%;
    height: auto;
}
/* Interactive section styles */
#interactive {
    padding: 100px 50px;
    text-align: center;
    background-color: #fff;
}

.prompt-builder-graphic img {
    max-width: 50%;
    height: auto;
    margin-bottom: 30px;
}

#prompt-builder {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.form-group select,
.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#prompt-output {
    margin-top: 30px;
    font-size: 18px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
}

/* About section styles */
#about {
    padding: 100px 50px;
    background-color: #f5f5f5;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
}
.about-image img {
    max-width: 30%;
    height: auto;
/* Pagination styles */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.btn-previous,
.btn-next {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-previous:hover,
.btn-next:hover {
    background-color: #e64a19;
}

.btn-previous {
    margin-right: auto;
}

.btn-next {
    margin-left: auto;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 16px;
}