/* Base Styles */
:root {
  --primary: #2c3e50;
  --secondary: #e74c3c;
  --accent: #3498db;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --text: #333333;
  --gray: #95a5a6;
  --light-gray: #f5f5f5;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: rgba(231, 76, 60, 0.1);
  transform: translateY(-2px);
}

/* Header and Navigation */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background-color: var(--light);
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--text);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Section Styles */
section {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--dark);
}

/* Services Section */
.services {
  background-color: white;
}

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

.service-card {
  background-color: var(--light);
  color: var(--dark);
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

/* About Section */
.about {
  background-color: var(--light);
}

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

.about-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--dark);
}

.about-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Events Section */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.event-item {
  display: flex;
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-details {
  padding: 40px;
}

.event-details h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--dark);
}

.event-meta {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background-color: var(--light);
}

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

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text);
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--secondary);
}

/* Contact */
.contact {
  background-color: white;
}

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

.contact-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-content > p {
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--light);
}

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

.footer-section ul li a {
  color: var(--gray);
  transition: all 0.3s ease;
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 14px;
}

.nav-links-mobile {
  display: none;
}

.whatsapp {
    position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
    width: 2em;
    height: 2em;
}

.my-float{
	margin-top:16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links-mobile {
    display: flex;
    align-items: center;
    gap: 1em;
  }

  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  section {
    padding: 60px 0;
  }
}

