:root {
  --primary-color: #ff9800;
  --primary-hover: #e68a00;
  --bg-color: #f7f9fa;
  --surface-color: #ffffff;
  --text-color: #333333;
  --text-muted: #666666;
  --border-color: #e1e4e8;
}

body {
  margin: 0;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: #222222;
}

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

/* Header & Nav */
.header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid var(--primary-color);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
  height: 40px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: #333333;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Main Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #333333;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* Hover underline effect */
.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px 100px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffffff;
  animation: fadeInDown 0.8s ease-out forwards;
}

.hero p {
  color: #dddddd;
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* Service Selection */
.services-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.service-header {
  text-align: center;
  margin-bottom: 30px;
}

.features-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}
.features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.features-list li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.price-tag {
  text-align: center;
  margin: 30px 0;
}
.price-tag h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin: 0;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  box-sizing: border-box;
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-color) !important;
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* Layout Helpers */
.flex-split {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.flex-split > div {
  flex: 1;
}

.img-responsive {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.service-card:hover .img-responsive {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  /* ... existing query for footer ... */
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }
  
  .main-nav ul {
    gap: 15px;
  }
  
  .main-nav a {
    font-size: 0.95rem;
  }
  
  .flex-split {
    flex-direction: column;
  }
  
  .contact-info {
    display: none; /* simple mobile hide for now to save space */
  }
}

/* Footer Elements - 3 Column Layout */
.site-footer {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding: 60px 20px 20px;
  color: var(--text-color);
  margin-top: 40px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-brand .y-tunnus {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.contact-list .icon {
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact-list .contact-text {
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-list .contact-text a {
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
}

.contact-list .contact-text a:hover {
  color: var(--primary-hover);
}

.footer-map {
  display: flex;
  flex-direction: column;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
  height: 180px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.text-right {
  text-align: right;
  margin-left: auto; 
margin-right: 0;
} 
.spacer-both-xs{
	padding-top:10px;
	padding-bottom:10px;
}
.spacer-bottom-xs{
	padding-bottom:10px;
}
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .contact-list li {
    justify-content: center;
    text-align: center;
  }
}

/* Booking Forms */
.booking-form {
  background-color: #fcfcfc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.booking-form h4 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.2);
}
