
/* css/style.css */
:root {
  --primary-color: #aa4700;
  --secondary-color: #264653;
  --accent-color: #e9c46a;
  --font-family: 'Poppins', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); color: var(--secondary-color); line-height: 1.6; }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.header-left,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-left { justify-content: flex-start; }
.header-right { justify-content: flex-end; }

.logolink {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

nav ul { list-style: none; display: flex; gap: 20px; }
nav ul li a { text-decoration: none; color: var(--secondary-color); font-weight: 600; }
.logo {     height: 80px; margin-bottom: 12px; }
.hero {
  position: relative;
  background-image: url('https://www.voltito.com/background.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content {
  background: rgba(255,255,255,0.8);
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}
.hero h1 { color: var(--primary-color); font-size: 2.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.125rem; margin-bottom: 30px; }
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}
.section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.section h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; color: var(--secondary-color); }
.section p { max-width: 800px; margin: 0 auto 20px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature-grid img { width: 100%; border-radius: 8px; }
footer { background: #f4f4f4; text-align: center; padding: 20px; font-size: 0.9rem; }
footer a { color: var(--primary-color); text-decoration: none; }

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: #fff;
  color: #264653;
  padding: 12px 18px 12px 14px;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  font-size: 1.04em;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  outline: none;
}

.dropbtn:hover,
.dropbtn:focus {
  box-shadow: 0 4px 24px rgba(42,157,143,0.09);
}

.world-icon svg {
  display: inline-block;
  vertical-align: middle;
  color: #2a9d8f;
}

.arrow {
  font-size: 0.8em;
  transition: transform 0.35s cubic-bezier(.4,2,.6,1);
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  min-width: 150px;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(42,157,143,0.14);
  overflow: hidden;
  flex-direction: column;
  animation: dropdown-slide 0.4s cubic-bezier(.23,2,.6,1);
  z-index: 100;
}

.dropdown.open .dropdown-content {
  display: flex;
}

@keyframes dropdown-slide {
  from { transform: translateY(-16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.dropdown-content a {
  padding: 12px 20px;
  text-decoration: none;
  color: #264653;
  font-weight: 500;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}

.dropdown-content a:hover {
  background: #2a9d8f11;
  color: #2a9d8f;
}

@media (max-width: 600px) {
  .drop-label {
    display: none;
  }
}
