/* === Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: url('int15.jpeg') no-repeat center center fixed;
  background-size: cover;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Header === */
.header-small {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #e6c200;
}

/* === Profile Box === */
.profile-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}

.profile-box {
  background: rgba(255,255,255,0.95);
  padding: 2.5rem 3rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
}

.profile-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.profile-box p {
  margin-bottom: 1rem;
  color: #444;
}

.profile-box h3 {
  margin: 1.5rem 0 0.75rem;
  color: #333;
}

/* === Booking List === */
.booking-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.booking-list li {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* === Delete Account Section === */
.delete-account {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border: 1px solid #f5c2c2;
  background: #fff0f0;
  border-radius: 8px;
}

.delete-account h3 {
  color: #a50000;
  margin-bottom: 0.5rem;
}

button.danger {
  background: #d60000;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

button.danger:hover {
  background: #a50000;
  transform: scale(1.05);
}

#delete-status {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* === Footer === */
footer {
  padding: 1.5rem;
  text-align: center;
  background: #f0f0f0;
  color: #555;
  font-size: 0.9rem;
  margin-top: auto;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .profile-box {
    padding: 2rem 1.5rem;
  }
}
