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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* LAYOUT CONTAINER */
.container {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 240px;
  background: #fff;
  height: 100vh;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

.sidebar .logo {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar .logo img {
  max-width: 140px;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
}

.sidebar nav ul li {
  margin: 5px 0;
}

.sidebar nav ul li a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.sidebar nav ul li a i {
  margin-right: 12px;
  font-size: 18px;
}

.sidebar nav ul li a:hover {
  background: #f0f0f0;
  color: #009688;
  border-radius: 6px;
}

/* TOPBAR */
.topbar {
  background: #fff;
  padding: 15px 30px;
  text-align: right;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 240px; /* match sidebar width */
  right: 0;
  height: 60px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.topbar .signin-btn {
  background: #009688;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* MAIN CONTENT */
.main-content {
  margin-left: 240px;
  margin-top: 60px; /* match topbar height */
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* HERO SECTION */
.image {
  background: url('../images/banner.png') center/cover no-repeat;
  padding: 100px 50px;
  color: white;
  text-align: center;
  position: relative;
}
.image_1 {
  background: url('../images/trip-designer.png') center/cover no-repeat;
  padding: 100px 50px;
  color: white;
  text-align: center;
  position: relative;
}

.hero .box {
  background: rgba(255,255,255,0.95);
  display: inline-block;
  padding: 30px 40px;
  border-radius: 12px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero .box h1 {
  margin: 0;
  font-size: 32px;
}

.hero .box p {
  margin-top: 10px;
  font-size: 18px;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  background: #009688;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

/* SECTION */
.section {
  padding: 40px 60px;
  background: #f4f6f9;
}

.section h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.card-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

/* Footer Base */
footer {
  background: #f8f9fa;
  padding: 60px 40px;
  font-size: 15px;
  color: #333;
  border-top: 1px solid #ddd;
}

/* Flex utilities */
footer .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left and Right Columns */
footer .footer-left {
  flex: 0 0 66%;
  max-width: 66%;
}

footer .footer-right {
  flex: 0 0 33%;
  max-width: 33%;
  display: flex;
  gap: 20px;
}

.footer-right .col {
  flex: 1;
}

/* Footer Text & Links */
footer h4, footer h5 {
  margin-bottom: 10px;
  font-weight: bold;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 8px;
}

footer a {
  color: #007c6a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Copyright & Social */
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

footer .social-icons a {
  display: inline-block;
  margin-left: 15px;
}

footer .social-icons .ico {
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
}

.ico.wa { background-image: url('/assets/icons/whatsapp.png'); }
.ico.fb { background-image: url('/assets/icons/facebook.png'); }
.ico.it { background-image: url('/assets/icons/instagram.png'); }
.ico.tw { background-image: url('/assets/icons/twitter.png'); }
