/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    color: #f39c12;
}

p {
    margin-bottom: 15px;
    color: #34495e;
}

/* Header Styles */
.site-header {
    background-color: #2c3e50;
    padding: 15px 0;
    border-bottom: 3px solid #f39c12;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.6em;
    color: #ecf0f1;
    font-weight: bold;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f39c12;
}

/* Footer Styles */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: #f39c12;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.4em;
    color: #ecf0f1;
}

.footer-copyright {
    font-size: 1em;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-links {
    font-size: 1em;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f39c12;
}

/* Container Styles for Consistent Layout Across Pages */
.content-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-input, .form-textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

/* Button Styles */
.btn-primary {
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Home Page Styles */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 40px;
}

.intro-heading {
    font-size: 3em;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.services-section {
    margin-bottom: 40px;
    text-align: center;
}

.services-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.services-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-image {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.cta-section {
    text-align: center;
    margin-bottom: 40px;
}

.cta-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* List Styles */
.about-list {
    text-align: center;
    list-style-position: inside;
    margin-bottom: 20px;
}

/* Additional Styles for Forms, Containers, and Responsive Design */
.create-store-container, .contact-container, .create-config-container, .console-container, .about-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav-menu {
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .nav-link {
        font-size: 1.2em;
    }

    .create-store-container, .contact-container, .create-config-container, .console-container, .about-container {
        padding: 20px;
    }
}

/* Spinner container (initially hidden) */
#upload-spinner {
  display: none;
  margin: 20px auto;
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Keyframes for the spin animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}
