/********V3************/

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

body {
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background: wheat;
  min-height: 100vh;
  overflow-x: hidden;
}
/* Navigation styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
  background: linear-gradient(to right, #80bfbc, #4d7079);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
}

.logo {
  display: flex;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.25);
}
.logo::before {
  content: url(images/favicoala.png);
  animation: spin 6s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: orange;
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: none;
  border: none;
  position: relative;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #4a5568;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
  display: block;
}

.menu-toggle.active span:nth-child(1) {transform: rotate(-45deg) translate(-5px, 6px);}
.menu-toggle.active span:nth-child(2) {opacity: 0;}
.menu-toggle.active span:nth-child(3) {transform: rotate(45deg) translate(-5px, -6px);}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%); */
  background-color: wheat;
  backdrop-filter: blur(20px);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  padding: 100px 40px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu nav {
  position: static;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  border: none;
  padding: 0;
  margin: 0;
  height: auto;
  max-width: none;
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-size: 24px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid rgba(74, 85, 104, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-nav-links a:hover {
  color: #667eea;
  transform: translateX(10px);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main content styles */
main {
  margin-top: 70px;
  padding: 60px 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgb(0, 0, 0);
}

h1 {
  font-family: 'Nabla',Georgia, 'Times New Roman', Times, serif;
  text-shadow:
  -1px -1px 0 black,
  1px -1px 0 black,
  -1px  1px 0 black,
  1px  1px 0 black;
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

/* Form styles */
form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

fieldset {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 20px;
}

legend {
  font-weight: bold;
  font-size: 18px;
  color: #4a5568;
  padding: 0 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #4a5568;
}

.required {color: #e53e3e;}

input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: black;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Radio button styling */
.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  border: none;
  padding: 0;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

input[type="radio"] {
  width: auto;
  margin: 0;
}

/* Checkbox styling */
.newsletter-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* Submit button */
button[type="submit"] {
  background: linear-gradient(to right, #80bfbc, #4d7079);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  display: block;
  margin: 20px auto 0;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}


/* Footer */
footer {
  background: linear-gradient(to right, #4d7079, #80bfbc);
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {display: none;}
  .menu-toggle {display: flex;}
  h1 {font-size: 36px;}
  main {padding: 40px 15px;}
  form {padding: 20px;}
  .radio-group {flex-direction: column; gap: 10px;}
}

@media (max-width: 480px) {
  nav {padding: 0 15px;}
  .mobile-menu {padding: 80px 30px 30px;}
  .mobile-nav-links a {font-size: 20px;}
  h1 {font-size: 28px;}
}


@media (max-width: 60em) {
#photos  {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
}