body, html{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #dedbd2;
height: 100%;
}
.hero {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
}
.hero-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
display: flex;
align-items: center;
height: 100%;
}


.accordion-button {
color: #000; 
background-color: #f6f5f3; 
box-shadow: none !important;
}

.accordion-button:focus {
color: #000;
background-color: #f6f5f3;
box-shadow: none !important;
outline: none;
}

.accordion-button:not(.collapsed) {
color: #000;
background-color: #f6f5f3;
}
.register-btn, 
.login-btn, 
.btn-reset,
.btn-send,
.btn-login,
.btn-submit{
    padding: 10px;
    background-color: #4a5759;
    font-size: 1rem;
    color: #f7e1d7;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-btn:hover,
.login-btn:hover,
.btn-reset:hover,
.btn-send:hover,
.btn-login:hover,
.btn-submit:hover{
    background-color: #b0c4b1;
    color: #000;
}

.contact-section, 
.forgot-section, 
.login-section, 
.register-section  {
    padding: 60px 0;
    background-color: #dedbd2;
}

.contact-form, 
.forgot-form, 
.login-form, 
.register-form {
    background-color: #f6f5f3;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ccc;
}

.form-control {
border-radius: 10px;
}

.form-label {
font-weight: 500;
}


.footer-img {
max-height: 80px;
object-fit: contain;
}

/* On small devices, shrink logos slightly */
@media (max-width: 576px) {
    .footer-img {
    max-height: 80px;
    }

    .footer-logos .col-6 {
    padding-left: 5px;
    padding-right: 5px;
    }
}
.forgot-link,
.signup-link {
    font-size: 0.9rem;
    color: #4a5759;
    text-decoration: none;
}
.forgot-link:hover,
.signup-link:hover {
    text-decoration: underline;
}

.input-group-text {
    cursor: pointer;
}
.form-section-title {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

.input-group-text {
    cursor: pointer;
}
.age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-popup-content {
  background: #fff;
  padding: 2rem;
  text-align: center;
  max-width: 90%;
  width: 400px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
}

.age-popup-content h2 {
  color: #333;
  margin-bottom: 1rem;
}

.popup-buttons button {
  margin: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-buttons button:first-child {
  background-color: #4caf50;
  color: white;
}

.popup-buttons button:last-child {
  background-color: #f44336;
  color: white;
}
