/* Global Styles for Tiki Tan revamp
 *
 * The design uses a modern colour palette inspired by tropical beaches –
 * turquoise seas, coral sunsets and golden sands. Consistent spacing,
 * typography and component styling provide a polished, professional look
 * across all pages.  Sections are spaced evenly using a max‑width
 * container to keep content centered on large screens while still
 * adapting gracefully to mobile devices.
 */

/* CSS Variables for easy colour changes */
:root {
  --color-primary: #0A9396;       /* Tropical teal */
  --color-secondary: #EE6C4D;     /* Coral highlight */
  --color-accent: #F3B61F;        /* Warm golden accent */
  --color-light: #F9F9F9;         /* Light background */
  --color-dark: #113D3C;          /* Deep teal for headers/footer */
  --color-text: #333333;          /* Default text colour */
  --color-muted: #666666;         /* Secondary text colour */
}

/* Resets and base styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-light);
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container for centering content */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header navigation */
header {
  background: var(--color-dark);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

/* Hide the mobile navigation on larger screens; it will be displayed via
   @media queries below. Without this rule the mobile menu would show
   alongside the desktop navigation on wide screens. */
.mobile-nav {
  display: none;
}

/* Ensure the open modifier always overrides base display. */
.mobile-nav.open {
  display: flex;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.25rem 0;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

/* CTA button in navigation */
.btn-primary {
  background: var(--color-secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #d95c40;
}

/* Hero section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17,61,60,0.6) 0%, rgba(17,61,60,0.7) 60%, rgba(17,61,60,0.85) 100%);
  z-index: -1;
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.hero .hero-btn {
  margin-top: 2rem;
  display: inline-block;
  background: var(--color-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero .hero-btn:hover {
  background: #d95c40;
}

/* Services overview on home */
.services {
  padding: 4rem 0 2rem;
  background: var(--color-light);
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.service-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 160px;
  object-fit: cover;
}

.service-card .content {
  padding: 1rem;
  flex-grow: 1;
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.service-card ul {
  margin-left: 1rem;
  margin-bottom: 1rem;
  color: var(--color-muted);
}

.service-card li {
  list-style-type: disc;
  font-size: 0.9rem;
}

.service-card .btn {
  align-self: flex-start;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: background 0.2s ease;
}

.service-card .btn:hover {
  background: #08787a;
}

/* Specials section */
.specials {
  background: #ffffff;
  padding: 4rem 0;
}

.specials h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.special-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.special-card span.day {
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  align-self: flex-start;
}

.special-card h4 {
  margin: 0.75rem 0 0.5rem;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.special-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: auto;
}

.special-card .offer {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-secondary);
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--color-dark);
  color: #d8e3e2;
  padding: 2rem 0;
  margin-top: 4rem;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

footer h4 {
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

footer a {
  color: #d8e3e2;
  text-decoration: none;
  font-size: 0.9rem;
}

footer a:hover {
  text-decoration: underline;
}

footer .copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #a7bfbf;
}

/* Form styles */
form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

label {
  font-weight: 600;
  color: var(--color-dark);
}

input, select, textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button, .btn-submit {
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

button:hover, .btn-submit:hover {
  background: #08787a;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    display: none;
    flex-direction: column;
    padding: 1rem;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav a {
    color: white;
    padding: 0.5rem 0;
  }
  .mobile-nav a:hover {
    color: var(--color-secondary);
  }
}