/* canvas.css */

/* Import magazine-style fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.7;
}

/* Header */
header {
  background-color: #004d4d; /* deep teal */
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #d4af37; /* gold */
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #d4af37;
}

/* Hero */
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 6rem 2rem;
  animation: fadeIn 2s ease-in;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  color: #004d4d;
}

/* Sections */
section {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1rem;
  animation: fadeIn 1.5s ease-in;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #004d4d;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #f9f9f9;
  border: 1px solid #d4af37;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 1rem;
  color: #004d4d;
}

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

/* Fee Table */
#fees table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Open Sans', sans-serif;
}

#fees th, #fees td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}

#fees th {
  background-color: #004d4d;
  color: #fff;
  font-weight: 600;
}

#fees td {
  background-color: #fdfdfd;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #004d4d;
}

form input, form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
}

form button {
  background-color: #004d4d;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #d4af37;
  color: #004d4d;
}

/* Footer */
footer {
  background-color: #004d4d;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

footer a {
  color: #d4af37;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
}

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