/* General Styles */
body {
    margin: 0;
    font-family: 'Amiri', serif;
    background-image: url('hamidiyeh-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
}

/* Optional: Add a warm overlay to blend the image with the theme */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(85, 107, 47, 0.3);
    z-index: 1;
}

/* Ensure content is above the overlay */
header, main, footer {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    padding-top: 40px;
    padding-bottom: 20px;
}

/* Logo Styling */
.logo-text {
    font-family: 'Amiri', serif;
    font-size: 72px;
    color: #D4AF37;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Welcome Text Styling */
.welcome-text {
    font-family: 'Amiri', serif;
    font-size: 36px;
    color: #D4AF37;
    margin-top: 10px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Launch Note Styling */
.launch-note {
    font-family: 'Amiri', serif;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 10px;
}

/* Main Content Area */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Signup Form Section */
.signup-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    width: 80%;
    max-width: 500px;
}

.signup-form h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 18px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 16px;
    box-sizing: border-box;
    direction: rtl;
}

/* Submit Button Styling */
.submit-button {
    background-color: #556B2F;
    color: #FFFFFF;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-family: 'Amiri', serif;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #405022;
}

/* Call to Action (CTA) Section */
.cta-section {
    margin-top: 20px;
    padding-bottom: 40px;
}

/* CTA Button Styling */
.cta-button {
    background-color: #D4AF37;
    color: #FFFFFF;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-family: 'Amiri', serif;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #556B2F;
    color: #FFFFFF;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    color: #333;
    font-size: 14px;
    font-family: 'Amiri', serif;
}
footer a {
    color: #d4a017;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}
.social-icons i {
    font-size: 30px;
    color: #d4a017;
    transition: transform 0.3s;
}
.social-icons i:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 56px;
    }
    .welcome-text {
        font-size: 28px;
    }
    .signup-section {
        width: 90%;
        padding: 20px;
    }
    .signup-form h2 {
        font-size: 24px;
    }
    .form-group label {
        font-size: 16px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"] {
        padding: 10px;
        font-size: 14px;
    }
    .submit-button {
        padding: 10px 20px;
        font-size: 18px;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 48px;
    }
    .welcome-text {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .signup-section {
        width: 95%;
    }
    .signup-form h2 {
        font-size: 22px;
    }
    .cta-button {
        font-size: 18px;
        padding: 10px 25px;
    }
}