/*
Theme Name: Lifestylehotels Oman
Theme URI: https://lifestylehotels-oman.ch
Author: Ihre Agentur
Author URI: https://lifestylehotels-oman.ch
Description: Bildstarkes, verkaufsorientiertes Theme für Lifestylehotels-oman.ch mit Oman-Fokus.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lifestylehotels-oman
*/

/* Grundlayout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f8f6f3;
}

a {
  color: #a85b32;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e3ded6;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-title a {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.main-navigation a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #444;
}

.main-navigation a:hover {
  color: #a85b32;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
  z-index: -1;
}

.hero-inner {
  max-width: 700px;
  padding: 4rem 1rem;
}

.hero-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: #a85b32;
  color: #fff;
  box-shadow: 0 10px 25px rgba(168, 91, 50, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(168, 91, 50, 0.5);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-light {
  background: #f8f6f3;
}

.section-white {
  background: #ffffff;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: #666;
}

/* Grid / Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 10, 5, 0.08);
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.3rem 1.4rem 1.6rem;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a26d3b;
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

/* Feature Icons */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.feature {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 15px 35px rgba(15, 10, 5, 0.06);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: #555;
  font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* Kontakt */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d8d0c6;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

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

label {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: block;
}

.form-group {
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: #1e1914;
  color: #e5dfd5;
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}

.site-footer a {
  color: #e5dfd5;
}

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

.footer-bottom {
  font-size: 0.8rem;
  text-align: center;
  color: #a89a86;
}

/* Responsive Navigation (basic) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .site-header-inner {
    flex-wrap: wrap;
  }

  .main-navigation {
    width: 100%;
    margin-top: 0.5rem;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0.75rem;
    display: none;
  }

  .main-navigation.toggled ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 60vh;
  }
}
