/* --- BASE STYLES --- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #fbeee6 100%);
  color: #2d2d2d;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2em 0 1em 0;
  background: #fff;
}

.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5em;
}

.site-logo {
  display: block;
  margin: 0 auto 0.3em auto;
  width: 120px;
  max-width: 95vw;
  height: auto;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #e07a5f;
  font-family: 'Pacifico', cursive, sans-serif;
  letter-spacing: 2px;
  text-align: center;
}

/* Remove any margin or float on header img if present */
header img {
  margin: 0 auto 0.3em auto !important;
  display: block !important;
  float: none !important;
}
header h1 {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  font-size: 2.5em;           /* Match style.css */
  letter-spacing: 2px;
  color: #e07a5f;
  font-family: 'Pacifico', cursive, sans-serif;
  text-align: left;
}
header nav {
  background: rgba(255, 245, 235, 0.95);
  box-shadow: 0 2px 12px #e07a5f22;
  border-radius: 0 0 18px 18px;
  padding: 0.7em 1.5em;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 1em;
}
header nav a {
  color: #e07a5f;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1em;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #e07a5f;
  color: #fff;
}
footer {
  background: #fbeee6;
  text-align: center;
  padding: 1.2em 0 0.7em 0;
  color: #888;
  font-size: 1em;
  margin-top: 2em;
  border-top: 1px solid #f9c46b;
}

/* --- CONTACT PAGE STYLES --- */
.contact-banner {
  min-height: 60vh;
  width: 100%;
  background: url("../images/Florist1.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-banner-overlay {
  background: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  width: 100%;
  max-width: 900px;
  margin: 3em auto 2em auto;
  border-radius: 24px;
  box-shadow: 0 2px 24px #e7d7c7;
  padding: 2em 0.5em;
  align-items: stretch;
  justify-content: center;
}
.contact-section {
  background: #fff;
  width: 100%;
  max-width: 500px;
  margin: 3em auto 2em auto;
  padding: 2em 2em 1.5em 2em;
  border-radius: 18px;
  box-shadow: 0 2px 16px #e7d7c7;
  text-align: center;
  flex: 1 1 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-section h2 {
  color: #e07a5f;
  font-family: 'Pacifico', cursive, sans-serif;
  font-size: 2em;
  margin-bottom: 0.5em;
}
.contact-section p {
  color: #555;
  margin-bottom: 1.5em;
  font-size: 1.1em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border: 1px solid #e07a5f;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}
.contact-form textarea {
  min-height: 90px;
  max-height: 200px;
}
.contact-form button {
  background: linear-gradient(90deg, #e07a5f 0%, #f9c46b 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.8em 2em;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px #e7d7c7;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  max-width: 300px;
  align-self: center;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #f9c46b 0%, #e07a5f 100%);
  transform: scale(1.05);
}
.contact-links-vertical {
  background: url("../images/banner_s.jpg") center center/cover no-repeat, linear-gradient(135deg, #fbeee6 60%, #f9c46b22 100%);
  border: 2px solid #f9c46b;
  border-radius: 18px;
  box-shadow: 0 2px 16px #e7d7c7;
  padding: 1em 0.5em 1em 0.5em;
  margin-top: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 250px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0.5em;
}
.contact-links-vertical h3 {
  color: #e07a5f;
  font-family: 'Pacifico', cursive, sans-serif;
  margin-bottom: 1.2em;
  font-size: 1.3em;
  letter-spacing: 1px;
  margin-top: 1em;
  align-self: center;
}
.clients-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.client-link-btn {
  background: #fff;
  color: #e07a5f;
  border: 2px solid #e07a5f;
  border-radius: 24px;
  padding: 0.5em 0.7em;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0.5em;
  box-shadow: 0 2px 8px #f9c46b33;
  transition: 
    background 0.2s, 
    color 0.2s, 
    border-color 0.2s, 
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: block;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  min-width: 120px;
  text-align: center;
}
.contact-links-vertical .client-link-btn:first-of-type {
  margin-top: 0;
}
.client-link-btn:hover,
.client-link-btn:focus {
  background: linear-gradient(90deg, #e07a5f 0%, #f9c46b 100%);
  color: #fff;
  border-color: #f9c46b;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px #e07a5f33;
}
.client-link-btn:hover::after,
.client-link-btn:focus::after {
  width: 250%;
  height: 250%;
}

/* Responsive: stack Visit Our Clients under Contact on small screens */
@media (max-width: 700px) {
  .contact-banner-overlay {
    flex-direction: column;
    gap: 1.5em;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 100%;
    padding: 1.2em 0.5em;
  }
  .contact-section,
  .contact-links-vertical {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-links-vertical {
    margin-top: 1.5em;
    margin-bottom: 0;
    order: 2; /* ensure it comes after the contact-section */
  }
  .contact-section {
    order: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .site-logo {
    width: 96px;
  }
  header h1 {
    font-size: 2em;
  }
}
@media (max-width: 600px) {
  .site-logo {
    width: 70px;
    margin-bottom: 0.2em;
  }
  header h1 {
    font-size: 1.7em;
  }
}


