/* css/styles.css */

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;   /* pure white */
}

/* Layout */

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header & nav */

header {
  background: #ffffff;   /* white header */
  border-bottom: 1px solid #e0d7c8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;  /* nav centered under logo */
  gap: 1.5rem;
  padding-bottom: 0.75rem;
}

/* Logo row above nav */

.site-logo {
  padding: 1.5rem 0 0.75rem;
  display: flex;
  justify-content: center;
}

.site-logo img {
  max-width: 500px;       /* adjust smaller/bigger if you want */
  width: 100%;
  height: auto;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

nav a {
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  color: #333;
  background: transparent;
}

nav a:hover {
  border-color: #c28b4b;
  background: #fff;
}

nav a.active {
  background: #c28b4b;
  color: #fff;
  border-color: #c28b4b;
}

/* Hero / main sections */

.hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 650px;
  margin: 0.5rem auto 0;
  color: #555;
}

/* Cards on home */

.card-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
}

@media (min-width: 800px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e1d6c8;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
}

.card h2 {
  font-size: 1.2rem;
}

/* Generic sections */

.section {
  padding: 3rem 0 2rem;
}

.section h2,
.section h3 {
  margin-bottom: 0.75rem;
}

.section p {
  max-width: 700px;
}

/* Gallery */

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-grid img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
}

/* Contact */

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

.contact-details {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.25rem;
  justify-items: center;
}

.contact-details a {
  color: #c28b4b;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Simple “form” look for newsletter */

.newsletter {
  margin: 2rem auto 0;
  max-width: 420px;
  display: grid;
  gap: 0.5rem;
}

.newsletter label {
  text-align: left;
  font-size: 0.9rem;
}

.newsletter input[type="email"] {
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d0c5b5;
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #c28b4b;
  color: #fff;
  font-size: 0.95rem;
}

.btn:hover {
  background: #a46e32;
}

/* Footer */

footer {
  margin-top: 3rem;
  padding-top: 0;
  font-size: 0.85rem;
  color: #666;
  background: #ffffff;
}

/* Wave at the top of the footer */
.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Footer content */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  text-align: center;
}

/* Social icons row */
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.social-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #666;
}

.social-links a:hover {
  color: #c28b4b;
}

.footer-copy {
  letter-spacing: 0.02em;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
}

.policy-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: left;
}

.policy-container h1,
.policy-container h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.policy-container p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: #666;
}

.footer-links a:hover {
  color: #c28b4b;
  text-decoration: underline;
}
