/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@400;600;700&display=swap');

:root {
  --primary-color: #008080; /* Teal */
  --secondary-color: #FF7F50; /* Coral */
  --accent-color: #20B2AA; /* Light Sea Green */
  --light-color: #FDF5E6; /* Old Lace */
  --dark-color: #2F4F4F; /* Dark Slate Gray */
  --gradient-primary: linear-gradient(135deg, #20B2AA 0%, #008080 100%);
  --hover-color: #006666; 
  --background-color: #FFFAFA; /* Snow */
  --text-color: #4A4A4A; 
  --border-color: rgba(0, 128, 128, 0.2);
  --divider-color: rgba(47, 79, 79, 0.1);
  --shadow-color: rgba(0, 128, 128, 0.15);
  --highlight-color: #FFD700;
  --main-font: 'Source Sans Pro', sans-serif;
  --alt-font: 'Playfair Display', serif;
}

body {
  font-family: var(--main-font);
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--alt-font);
  color: var(--dark-color);
}

.font-alt {
  font-family: var(--alt-font);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.875rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-decoration: none;
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--light-color);
  color: var(--dark-color);
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 2px solid var(--primary-color);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--hover-color);
}

.cookie-btn-alt {
  background-color: transparent;
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
}

.cookie-btn-alt:hover {
  background-color: var(--dark-color);
  color: #ffffff;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.icon-wrapper {
  background-color: var(--light-color);
  color: var(--secondary-color);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.card:hover .icon-wrapper {
  transform: scale(1.1);
}

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  background: rgba(47, 79, 79, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color);
}