/* Base styles */
:root {
  --primary-color: #053D63;
  --secondary-color: #ff0000;
  --text-color: #333;
  --bg-color: #fff;
  --footer-bg: #053D63;
  --footer-color: #fff;
  --max-width: 1200px;
  --header-font: 'Parisienne', cursive;
  --body-font: 'Fanwood Text', serif;
  --accent-font: 'Amaranth', sans-serif;
}

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

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  padding: 20px 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid #eee;
}

.header-content {
  text-align: center;
  margin-bottom: 20px;
}

.site-title {
  font-family: var(--header-font);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.site-subtitle {
  font-family: var(--accent-font);
  font-size: 1.5rem;
}

.phone-number {
  color: var(--primary-color);
  text-decoration: none;
}

.phone-number:hover {
  text-decoration: underline;
}

/* Navigation */
.main-navigation {
  margin-top: 1rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--accent-font);
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu li.active a {
  color: var(--primary-color);
}

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

/* Hero Section */
.hero {
  margin-bottom: 2rem;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
}

.slide-title {
  font-family: var(--accent-font);
  margin-bottom: 0.5rem;
}

/* Feature Grid */
.features {
  margin-bottom: 2rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #f9f9f9;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.feature-title {
  font-family: var(--accent-font);
  padding: 1rem 1rem 0.5rem;
  color: var(--primary-color);
}

.feature-text {
  padding: 0 1rem 1rem;
}

/* Social Links */
.social-links {
  margin-bottom: 2rem;
}

.social-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  transition: background-color 0.3s, transform 0.3s;
}

.social-link:hover {
  background-color: #0a5a8e;
  transform: scale(1.1);
}

/* Footer */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-color);
  padding: 2rem 0;
  text-align: center;
}

.footer-title {
  font-family: var(--header-font);
  margin-bottom: 0.5rem;
}

/* Etiquette Page Styles */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
  text-align: center;
}

.page-title {
  font-family: var(--header-font);
  font-size: 2.5rem;
  color: white;
  margin: 0;
}

.policy-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.policy-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
}

.policy-icon {
  font-size: 2rem;
  color: #053D63;
  margin-bottom: 1rem;
  text-align: center;
}

.policy-title {
  color: #053D63;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--accent-font);
  font-weight: bold;
}

.policy-content {
  color: #053D63;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .site-title {
    font-size: 2.2rem;
  }
  
  .site-subtitle {
    font-size: 1.3rem;
  }
  
  .feature-card {
    flex: 1 1 250px;
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }
  
  .site-subtitle {
    font-size: 1.2rem;
  }
  
  .feature-grid {
    gap: 1.5rem;
  }
  
  .feature-card {
    flex: 1 1 100%;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .site-title {
    font-size: 1.8rem;
  }
  
  .site-subtitle {
    font-size: 1.1rem;
  }
  
  /* Mobile navigation */
  .menu-toggle {
    display: block;
    margin: 0 auto;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 0.5rem 0;
  }
  
  .feature-card {
    margin-bottom: 1rem;
  }
  
  .social-container {
    gap: 1rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .policy-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 1.5rem 0;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .policy-icon {
    font-size: 1.8rem;
  }

  .policy-title {
    font-size: 1.3rem;
  }
}