
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-blue: #0066CC;
  --secondary-blue: #4A90E2;
  --light-blue: #E6F3FF;
  --dark-blue: #003D7A;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --success-green: #28A745;
  --accent-orange: #FF6B35;

  --background-1: var(--white);
  --background-2: var(--light-gray);
  --background-3: var(--light-blue);
  --background-4: #E9ECEF;

  --foreground-1: var(--dark-gray);
  --foreground-2: var(--medium-gray);

  --accent-1: var(--primary-blue);
  --accent-2: var(--secondary-blue);
  --accent-3: var(--dark-blue);
}

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

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--background-1);
  font-family: 'Inter', sans-serif;
  color: var(--foreground-1);
  line-height: 1.6;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-blue);
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--dark-blue);
}

h4 {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--medium-gray);
  font-weight: 400;
}

p {
  color: var(--foreground-2);
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-blue);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}

button {
  font-family: 'Inter', sans-serif;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  background: var(--background-2);
  border: 2px solid var(--background-4);
  color: var(--foreground-1);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

button:hover {
  background: var(--background-3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

button:active {
  transform: translateY(0);
}

button.cta {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

button.cta:hover {
  background: var(--secondary-blue);
  border-color: var(--secondary-blue);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 4rem;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  width: 100%;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid var(--background-4);
}

.nav-inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

nav .left,
nav .right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav .left .name {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.25rem;
}

nav .right .address {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Sections */
section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  min-height: 200px;
  align-items: center;
}

.hero-logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.2));
  background: white;
  border-radius: 8px;
  padding: 10px;
  border: 2px solid var(--primary-blue);
}

/* Fallback if image doesn't load */
.hero-logo::before {
  content: "TIMARU LAUNDROMAT";
  display: none;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-blue);
  text-align: center;
  padding: 2rem;
  background: var(--light-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  position: absolute;
  z-index: -1;
}

.hero .header-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 800px;
}

.hero-map {
  margin: 2rem 0;
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-map .map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
  border: 2px solid var(--primary-blue);
  position: relative;
}

.map-address {
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--light-blue);
  border-radius: 12px;
  border: 2px solid var(--background-4);
}

.renovation-notice {
  margin: 1.5rem auto 0 auto;
  padding: 1rem;
  background: #fff3cd;
  border: 2px solid #ffeaa7;
  border-radius: 12px;
  max-width: 600px;
  text-align: center;
}

.renovation-notice p {
  margin: 0;
  color: #856404;
  font-size: 1rem;
  line-height: 1.5;
}

.map-address h3 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-address p {
  color: var(--medium-gray);
  font-size: 1rem;
  margin: 0;
}

/* Features Section */
.features {
  padding: 2rem 0;
}

.features .grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.features .tile {
  width: 100%;
  min-height: 250px;
  background: var(--background-2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem;
  border: 2px solid var(--background-4);
  transition: all 0.3s ease;
}

.features .tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.features .row {
  display: flex;
  gap: 2rem;
  width: 100%;
}

.features .row .tile.small {
  width: 50%;
  flex-direction: column;
  text-align: center;
  min-height: 300px;
}

.features .tile .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.feature-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2rem;
}

.features .row .tile.small .feature-icon {
  margin-left: 0;
  margin-top: 1rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--background-4);
}

.benefit-icon {
  font-size: 1.5rem;
}

/* Location Section */
.location {
  padding: 2rem 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
  align-items: start;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.1);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.address-details p {
  font-size: 1.1rem;
}

/* About Section */
.about {
  padding: 2rem 0;
}

.about-content {
  max-width: 800px;
  text-align: center;
}

.comparison {
  margin-top: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.comparison-item {
  padding: 1.5rem;
  background: var(--background-2);
  border-radius: 12px;
  border: 2px solid var(--background-4);
}

.comparison-item h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.comparison-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* FAQ Section */
.faq {
  padding: 2rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.faq-item {
  padding: 1.5rem;
  background: var(--background-2);
  border-radius: 12px;
  border: 2px solid var(--background-4);
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 2rem 0;
}

.contact-info-simple {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 400px;
}

.contact-details p {
  font-size: 1.1rem;
}

/* Call to Action */
.call-to-action {
  padding: 2rem 0;
}

.call-to-action .callout-container {
  width: 100%;
  border-radius: 16px;
  background: var(--light-blue);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  border: 2px solid var(--background-4);
}

.call-to-action .callout-container .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 600px;
}

/* Footer */
footer {
  background: var(--background-2);
  padding: 4rem 2rem 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--background-4);
}

footer .inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

footer .inner .column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .inner .column .name {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.25rem;
}

footer .inner .column .address,
footer .inner .column .hours {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

footer .column p {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  nav .left {
    gap: 1.5rem;
  }
  
  .features .row {
    flex-direction: column;
  }
  
  .features .row .tile.small {
    width: 100%;
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  .nav-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  nav .left,
  nav .right {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  nav .right .address {
    display: none;
  }
  
  nav .left a {
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-logo img {
    height: 150px;
  }
  
  .hero-map .map-container iframe {
    height: 250px;
  }
  
  .features .tile {
    padding: 1.5rem;
    min-height: 200px;
  }
  
  .features .row .tile.small {
    min-height: 250px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-left: 0;
  }
  
  .benefits {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .call-to-action .callout-container {
    padding: 2rem 1.5rem;
  }
  
  footer .inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .buttons button {
    width: 100%;
    max-width: 280px;
  }
  
  section {
    padding: 0 1rem;
  }
  
  nav {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .nav-inner {
    gap: 0.8rem;
  }
  
  nav .left {
    gap: 0.8rem;
  }
  
  nav .left a {
    font-size: 0.85rem;
    padding: 0.3rem;
  }
  
  .hero .header-container {
    gap: 0.8rem;
  }
  
  .hero-logo img {
    height: 120px;
  }
  
  .hero-map .map-container iframe {
    height: 200px;
  }
  
  .map-address h3 {
    font-size: 1.1rem;
  }
  
  .map-address p {
    font-size: 0.9rem;
  }
  
  .map-address {
    padding: 0.8rem;
  }
  
  .features .tile {
    padding: 1rem;
    min-height: auto;
  }
  
  .features .row .tile.small {
    min-height: 200px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .benefit-item {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .faq-item {
    padding: 1rem;
  }
  
  .contact-details {
    gap: 0.8rem;
  }
  
  .contact-details p {
    font-size: 1rem;
  }
  
  .call-to-action .callout-container {
    padding: 1.5rem 1rem;
  }
  
  button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .buttons button {
    max-width: 240px;
  }
  
  section {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }
  
  main {
    gap: 2rem;
  }
}

@media (max-width: 320px) {
  h1 {
    font-size: 1.6rem;
  }
  
  .hero-map .map-container iframe {
    height: 180px;
  }
  
  .features .tile {
    padding: 0.8rem;
  }
  
  .nav-inner {
    padding: 0.5rem;
  }
  
  nav .left .name {
    font-size: 1.1rem;
  }
  
  button.cta {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}
