:root {
  --primary-color: #1A365D;
  --secondary-color: #2A4365;
  --accent-color: #E53E3E;
  --text-color: #2D3748;
  --light-bg: #F8FAFC;
  --white: #FFFFFF;
  --gray: #718096;
  --light-gray: #E2E8F0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

/* Header Styles */
header {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  color: var(--light-gray);
  font-weight: 400;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav li a {
  color: var(--white);
  font-weight: 600;
  position: relative;
}

nav li a:hover {
  color: var(--light-bg);
  text-decoration: none;
}

nav li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--light-bg);
  transition: width 0.3s;
}

nav li a:hover::after {
  width: 100%;
}

#menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button:hover {
  background-color: #C53030;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

/* Team Section */
.team {
  padding: 5rem 0;
}

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

.team-member {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-info {
  padding: 1.5rem;
}

/* Entertainment Section */
.entertainment {
  padding: 3rem 0;
  background-color: var(--light-bg);
}

.resources-list {
  max-width: 1000px;
  margin: 0 auto;
}

.resource-category {
  margin-bottom: 2rem;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.resource-category h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.resource-category ul {
  list-style-type: none;
  padding: 0;
}

.resource-category ul li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.8;
}

.resource-category ul li:before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  position: absolute;
  left: 0;
}

.entertainment-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.entertainment-links a {
  display: block;
  padding: 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s;
  background-color: var(--white);
}

.entertainment-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.links-section {
  margin-top: 3rem;
}

.links-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Contact Preview Section */
.contact-preview {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.contact-info {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.2);
}

.form-textarea {
  min-height: 150px;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: var(--secondary-color);
}

/* Footer Styles */
footer {
  background-color: var(--primary-color);
  color: var(--light-bg);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-gray);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-contact {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  
  .about-image {
    width: 100%;
  }
  
  .container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .service-card,
  .team-member {
    max-width: 400px;
    margin: 0 auto;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    padding: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav li {
    margin: 0.5rem 0;
    padding: 0 1rem;
  }
  
  #menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .menu-line {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    transition: all 0.3s;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .container {
    width: 90%;
    padding: 0 10px;
  }
  
  .services, 
  .about, 
  .team, 
  .contact {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}
