/* Global Styles */
:root {
  --primary-color: #00a0e4;
  --secondary-color: #0056a3;
  --accent-color: #50c878;
  --text-color: #333;
  --light-text: #fff;
  --background-color: #f8f9fa;
  --section-padding: 70px 0;
  --border-radius: 6px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Nunito', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 2.8rem;
  color: var(--light-text);
}

h2 {
  font-size: 2.2rem;
  color: var(--secondary-color);
}

h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.separator {
  height: 4px;
  width: 70px;
  background-color: var(--accent-color);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--light-text);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
}

.logo img {
  margin-right: 10px;
}

nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
}

.menu li {
  margin-left: 25px;
}

.menu a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  padding-bottom: 5px;
}

.menu a:hover {
  text-decoration: none;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 86, 163, 0.8), rgba(0, 160, 228, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="%230056a3"/><path d="M0,0L200,200M200,0L0,200" stroke="%230090d0" stroke-width="2"/></svg>');
  background-size: cover;
  color: var(--light-text);
  text-align: center;
  padding: 150px 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--background-color));
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  padding: var(--section-padding);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  padding: 30px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  text-align: center;
  border-bottom: 3px solid var(--primary-color);
}

.service-item:hover {
  transform: translateY(-10px);
}

/* Team Section */
.team {
  padding: var(--section-padding);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  padding: 30px;
  text-align: center;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background-color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-item {
  padding: 30px;
  border-radius: var(--border-radius);
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(0, 160, 228, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-item h4 {
  margin-top: 20px;
  text-align: right;
  font-style: italic;
}

/* Entertainment Section */
.entertainment {
  padding: var(--section-padding);
}

.entertainment-content {
  max-width: 900px;
  margin: 0 auto;
}

.entertainment-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.entertainment-item {
  padding: 25px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.entertainment-news {
  padding: 30px;
  background-color: #f0f8ff;
  border-radius: var(--border-radius);
  margin-top: 40px;
  border-left: 4px solid var(--accent-color);
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background-color: #fff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 160, 228, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  padding: 30px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info h3 {
  color: var(--light-text);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
  display: inline-block;
}

.contact-info p {
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #002a4e;
  color: #fff;
  padding-top: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo p {
  margin-left: 15px;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 20px;
  position: relative;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.copyright {
  background-color: #001b34;
  padding: 20px 0;
  text-align: center;
}

.copyright p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 992px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: var(--box-shadow);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
  }
  
  .menu.active {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  
  .menu li {
    margin: 10px 20px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .team-grid,
  .testimonial-grid,
  .entertainment-options {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}
