:root {
  --primary-color: #D23F36;   /* Coral red */
  --secondary-color: #78BB5D; /* Soft green */
}

/* Global Reset/Defaults */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: var(--primary-color);
  text-align: center;
}

h3 {
  font-size: 1.4em;
  margin: 0.5em 0;
  color: #333;
}

p {
  margin: 0 0 1em;
}

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

a:hover {
  text-decoration: underline;
}

/* Hero Section Styles */
#hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 58%;
  background-color: rgba(0, 0, 0, 0.432); /* semi-transparent black */
  z-index: 1;
}

#hero > * {
  position: relative;
  z-index: 2;
}

#hero .logo {
  margin-bottom: 40px;
  margin-top: -10px;
}

#hero .logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

#hero .tagline {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 20px;
}

/* About Section Styles */
#about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 20px;
  background: #ffffff;
}

#about .about-text {
  flex: 1;
  min-width: 300px;
  object-fit:cover;
}

#about .about-text h2 {
  text-align: left;
  object-fit:cover;
}

#about .about-photo {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  text-align: center;
  object-fit: cover;
  border-radius: 20%;
  background: transparent;
  margin-top: -20px;
}

#about .about-photo img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Services Section Styles */
#services {
  padding: 60px 20px;
  background: #f9f9f9;
}

#services .services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#services .service {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#services .service-img {
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
}

#services .service h3 {
  color: var(--primary-color);
}

#services .service p {
  font-size: 0.95em;
  margin-bottom: 1em;
}

/* Testimonials Section Styles */
#testimonials {
  padding: 60px 20px;
  background: #ffffff;
}

#testimonials .testimonial {
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
}

#testimonials blockquote {
  font-style: italic;
  margin: 0;
}

#testimonials figcaption {
  font-style: normal;
  color: #555;
  margin-top: 0.5em;
  font-size: 0.9em;
}

/* Contact Section Styles */
#contact {
  padding: 60px 20px;
  background: #f9f9f9;
}

#contact h2 {
  text-align: center;
}

#contact form {
  max-width: 500px;
  margin: 0 auto;
}

#contact label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
}

#contact input, #contact select, #contact textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
}

#contact button.submit-btn {
  font-size: 1em;
  font-weight: 700;
  padding: 10px 20px;
}

/* Buttons (unified and fixed) */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  font-size: 1em;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none;
}

/* Book and Submit Button Style */
.btn.book-btn, .btn.submit-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
}
.btn.book-btn{
  margin-top: 90px;
}
.btn.book-btn:hover, .btn.submit-btn:hover {
  background: #b8392f;
}

/* Learn More and About Robin Button Style */
.btn.learn-more {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: none;
}

.btn.learn-more:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.05); /* slight zoom on hover */
}

/* Success/Error messages */
.success-msg {
  color: #3C7832;
  font-weight: 600;
}

.error-msg {
  color: #D23F36;
  font-weight: 600;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #about {
    flex-direction: column;
  }

  #about .about-text {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px auto;
  }

  #about .about-photo {
    margin: 0 auto;
  }

  .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
  }

  .service {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .service-img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
  }

  .learn-more {
    margin-top: 10px;
    display: inline-block;
  }
}

/* Services Activities - Individual Image Sizes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

.service-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hypnosis-img {
  height: 260px;
}

.vibro-img {
  height: 260px;
}

.coaching-img {
  height: 210px;
}

.events-img {
  height: 210px;
}

/* About Robin page styles */
.about-robin-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-robin-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-robin-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.back-home {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: 0.3s;
}

.back-home:hover {
  background-color: #f5f5f5;
}

.page-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.page-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.bullets1 {
  text-align: left;
}