/* File: assets/css/style.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.top-bar {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  overflow: hidden;
}

.main-header {
  background: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #1dbf73;
}

.banner {
  height: 60px;
  margin: 0 20px;
}

.talk-btn {
  background: #1dbf73;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
}

.main-nav {
  background: #1dbf73;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
}

.main-nav li:hover > a {
  background: #148f54;
}

.submenu {
  display: none;
  position: absolute;
  background: #1dbf73;
  top: 100%;
  left: 0;
  z-index: 10;
}

.dropdown:hover .submenu {
  display: block;
}

.search-box {
  padding: 20px;
  text-align: center;
  background: #f1f1f1;
}

.search-box input[type='text'] {
  padding: 10px;
  width: 60%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-box button {
  padding: 10px 20px;
  background: #1dbf73;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.ad-left {
  flex: 1;
  max-width: 300px;
}

.carousel-right {
  flex: 3;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
}

.gig-item {
  min-width: 250px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.gig-item img {
  max-width: 100%;
  border-radius: 10px;
}

.btn-order {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #ff5700;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.main-footer {
  background: #222;
  color: #ccc;
  padding: 20px;
  text-align: center;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

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

/* Add to style.css */
.contact-section {
  padding: 40px;
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact-section h1 {
  color: #1dbf73;
  margin-bottom: 20px;
}
.contact-section p {
  font-size: 18px;
  margin-bottom: 12px;
}
