/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    
}


/* Header Styles */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #d6f1fe;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    max-width: 150px;
    height: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
}

.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.login-btn {    
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.button2 {width: 60%;
          padding-left: 5%;
          margin-left: 20%;
          margin-right: 10%;
}
/* Background Image Row */
.hero-row {
    background-image: url('../../images/somalia-marriage-couples.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Signup Form */

table {           
            width: 100%;
            border-collapse: collapse;
     }

        th,
        td {            
            padding: 20px;
            text-align: center;
        }

.signup-row {
    padding: 2rem;
    background-color: #f8f9fa;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

/*.form-group {
    margin-bottom: 1rem;
}
*/

/*input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
}*/

/* Testimonials */
.testimonials-row {
    padding: 2rem;
    background-color: #fff;
}

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

.testimonial-card {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Color Columns */
.color-columns {
    display: flex;
    flex-wrap: wrap;
}

.color-col {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    color: white;
}

.col-1 { background-color: #4CAF50; }
.col-2 { background-color: #2196F3; }
.col-3 { background-color: #9C27B0; }

/* Footer */
.footer-row {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-row {
        flex-direction: column;
    }
    
    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .color-columns {
        flex-direction: column;
    }
}

.registration-container {
    background-color: white;
    
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    display: flex;
}
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
    
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
.age-range .age-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-range input {
    flex: 1;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#captchaText {
    font-size: 20px;
    letter-spacing: 3px;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    user-select: none;
}

.terms {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.terms input {
    width: auto;
    margin-right: 10px;
}