/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

/* ===== Contact Header ===== */
.contact-header {
  text-align: center;
  padding: 150px 150px 150px;
  background: linear-gradient(rgba(252, 248, 248, 0.8), rgba(255,255,255,0.8)), 
              url('../assets/images/ballo2.jpg') center/cover no-repeat;
}

.contact-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #003366;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== Contact Container ===== */
.contact-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.contact-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}

.contact-box .icon {
  font-size: 40px;
  color: #003366;
  margin-bottom: 15px;
}

.contact-box .info {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 8px;
}

.contact-box span {
  font-size: 0.9rem;
  color: #777;
}


/* ===== Top Header ===== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
}

.top-header .contact span {
  margin-right: 15px;
}

.top-header .social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}
.top-header .social a:hover {
  color: #f39c12;
}

/* ===== Navigation ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

nav .nav-links {
  display: flex;
  list-style: none;
}

nav .nav-links li {
  margin-left: 25px;
}

nav .nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}
nav .nav-links a:hover {
  color: #f39c12;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;

}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 42px;
  line-height: 1.4;
}


/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}


/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #4CAF50, #00BCD4);
  color: white;
  padding: 15px 30px;
  font-size: 14px;
}

/* Left section */
.footer-left a {
  color: white;
  text-decoration: underline;
}

/* Center social icons */
.footer-center {
  display: flex;
  gap: 15px;
}

.footer-center a {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-center a:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Right section */
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right span {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
