/*
Theme Name: Neon Beach Studio
Theme URI: https://example.com/neon-beach-studio
Author: Sascha Buss
Author URI: https://example.com
Description: Helles Neon-Theme fÃ¼r ein Sonnenstudio mit Strand-, Wasser- und Palmen-Hintergrund in Neon Cyan/GrÃ¼n/Pink.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: neon-beach-studio
Tags: responsive, custom-colors, custom-logo, custom-menu, light
*/

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.1)),
    url('assets/img/hero-beach.png') center center no-repeat fixed;
  background-size: cover;
  color: #020617;
  line-height: 1.6;
}

/* Farbpalette NEON */
:root {
  --color-bg-soft: rgba(255, 255, 255, 0.88);
  --color-surface: rgba(255, 255, 255, 0.92);
  --color-cyan: #22d3ee;
  --color-green: #22c55e;
  --color-pink: #f472b6;
  --color-pink-strong: #ec4899;
  --color-text: #020617;
  --color-muted: #64748b;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.25);
  --glow-cyan: 0 0 18px rgba(34, 211, 238, 0.85);
  --glow-green: 0 0 18px rgba(34, 197, 94, 0.85);
  --glow-pink: 0 0 18px rgba(236, 72, 153, 0.85);
  --radius-xl: 1.5rem;
}

/* Layout */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.25));
  backdrop-filter: blur(18px);
}

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

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0, var(--color-cyan), transparent 55%),
    radial-gradient(circle at 80% 120%, var(--color-pink), transparent 55%),
    #020617;
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow: var(--glow-cyan);
}

.site-title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5f9ff;
}

.site-description {
  margin: 0;
  font-size: 0.75rem;
  color: #cbd5f5;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5f9ff;
  position: relative;
  padding-bottom: 0.3rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-pink));
  border-radius: 999px;
  transition: width 0.25s ease;
  box-shadow: var(--glow-cyan);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  font-size: 0.85rem;
  color: #bfdbfe;
}

.btn-primary {
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  background-image: linear-gradient(135deg, var(--color-cyan), var(--color-pink));
  color: #020617;
  box-shadow: var(--glow-cyan), var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: var(--glow-pink), var(--shadow-soft);
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.4);
  color: #e5f9ff;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  border: none;
  background: none;
  color: #e5f9ff;
  font-size: 1.6rem;
}

/* Hero */
.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 3rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  background: rgba(15, 23, 42, 0.65);
  color: #e5f9ff;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-green);
  box-shadow: var(--glow-green);
}

.hero-title {
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #f9f9ff;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-cyan), var(--color-pink));
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: var(--glow-cyan);
}

.hero-subtitle {
  font-size: 1rem;
  color: #e0f2fe;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: #e5f9ff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.85);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-pink-strong);
  box-shadow: var(--glow-pink);
}

/* Right hero info box */
.hero-info-box {
  border-radius: 1.8rem;
  padding: 1.4rem;
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.3), transparent 55%),
              radial-gradient(circle at 100% 0, rgba(236, 72, 153, 0.3), transparent 55%),
              rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
  color: #e5f9ff;
}

.hero-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.hero-info-open {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-mini-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bfdbfe;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.hero-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(15, 23, 42, 0.7);
}

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

.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
  color: #0f172a;
}

.section-description {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

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

.card {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.28), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.28), transparent 55%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: #e5f9ff;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.card-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #0f172a;
}

.card-price {
  margin: 0.3rem 0 0.6rem;
  font-weight: 600;
  color: var(--color-green);
  text-shadow: var(--glow-green);
}

.card-text {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.info-box {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.info-box h3 {
  margin-top: 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
}

.info-row:last-child {
  border-bottom: none;
}

/* Blog cards */
.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.post-card {
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.post-card .entry-title {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.post-card .entry-meta {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.post-card .entry-summary {
  font-size: 0.9rem;
}

/* Sidebar */
.sidebar {
  border-radius: var(--radius-xl);
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.92));
  color: #e5f9ff;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.footer-links a:hover {
  color: var(--color-cyan);
}

/* Content */
.entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: #0f172a;
}

.entry-content a {
  color: var(--color-pink-strong);
}

.entry-content a:hover {
  color: var(--color-cyan);
}

.entry-meta {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

/* Forms */
input,
textarea,
select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  color: #020617;
  font: inherit;
}

textarea {
  border-radius: 1.2rem;
}

button,
input[type="submit"] {
  font: inherit;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(15, 23, 42, 0.95);
    padding: 0.75rem 1.5rem 1rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title a:hover {
  text-decoration: underline;
}
/* Footer Google Maps Button – Sun Tropez */

.footer-maps-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-maps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.7rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        radial-gradient(circle at 10% 0, rgba(0, 255, 255, 0.25), transparent 60%),
        radial-gradient(circle at 90% 100, rgba(255, 0, 204, 0.3), transparent 60%),
        rgba(3, 5, 20, 0.9);
    box-shadow:
        0 0 18px rgba(0, 255, 255, 0.45),
        0 0 32px rgba(255, 0, 255, 0.45);
    color: #ffffff;
    cursor: pointer;
    transition: transform 160ms ease-out, box-shadow 160ms ease-out, background 160ms ease-out;
}

.footer-maps-button:hover,
.footer-maps-button:focus-visible {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
        0 0 26px rgba(0, 255, 255, 0.7),
        0 0 42px rgba(255, 0, 255, 0.6);
}
