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

:root {
    --sun: #ffae00;
    --turq: #00b4d8;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fafafa;
    line-height: 1.6;
}

/* HEADER */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: #ffffffcc; /* finomabb fehér */
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 1000;

    /* prémium hotel árnyék */
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
}

/* LOGO PREMIUM BEACH STYLE */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    margin-top: 2px;
}

/* MOBILE ADJUST */
@media (max-width: 800px) {
    .logo-main {
        font-size: 1.15rem;
    }
    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 1.4px;
    }
}

.nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #222;
}

.hamburger { display: none; cursor: pointer; font-size: 2rem; }

/* MOBILE MENU – kompakt drawer jobbról */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    transform: translateX(100%);
    transition: 0.35s ease;
    z-index: 9999;
    border-left: 2px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.7rem 0;
    transition: 0.2s;
}

.mobile-menu a:hover {
    color: #41b4ff;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 70vh;
    background: url('https://cf.bstatic.com/xdata/images/hotel/max1024x768/648206400.jpg?k=d0503ec3bc682faaa7c7cd7e793582844e614510bbc949d1a11a572599e99db5&o=') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
    position: relative;
}


.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.hero-btn {
    padding: 0.7rem 1.8rem;
    background: #4c00ff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO TEXT TUNING */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 4px 18px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 1.8rem auto;
    color: #f0f0f0;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

/* MODERN GLASS CTA BUTTON */
.hero-btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;

    transition: 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 10px;
    color: #fffdf8;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* SECTIONS */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 3rem auto;
}

h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}


section {
    scroll-margin-top: 90px; /* állítsd annyira, amilyen magas a fixed headered */
}

/* MAP */
.map-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* PRICING */
.pricing-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.price-card {
    background: #fff;
    width: 30%;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.price-card.featured {
    background: #4c00ff;
    color: #fff;
}

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

.gallery img {
    width: 100%;
    border-radius: 10px;
}

/* REVIEWS */
.review-card {
    background: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

/* BOOKING */
.booking input {
    padding: .5rem;
    margin: .5rem;
}

.booking-btn {
    padding: .6rem 1.5rem;
    background: #4c00ff;
    color: #fff;
    border-radius: 7px;
    border: none;
    cursor: pointer;
}

/* CONTACT SECTION */
.contact-section {
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: center;
}

/* CARD */
.contact-card {
    background: #fff;
    width: 100%;
    max-width: 900px;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    text-align: center;
}

.contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* CONTACT INFO */
.contact-info {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
}

.contact-info p {
    margin: 0.4rem 0;
}

.book-card{
  flex:1 1 360px;
  background:white;
  padding:22px;
  border-radius:14px;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
  border:1px solid #f2f2f2;
}

label{
  display:block;
  font-weight:600;
  font-size:13px;
  margin:10px 0 6px;
}

input[type="date"], select{
  width:100%;
  padding:11px;
  border-radius:8px;
  border:1px solid #e5e5e5;
  background:white;
  font-size:14px;
}

.calc{
  margin-top:15px;
  padding:14px;
  border-radius:10px;
  background:#f8fafc;
  font-weight:700;
  border:1px solid #eee;
}

.book-btn{
  display:inline-block;
  background:var(--turq);
  color:white;
  padding:11px 15px;
  border-radius:10px;
  font-weight:700;
  border:none;
  cursor:pointer;
  width:100%;
  text-align:center;
}

.book-btn {
    display: block;
    width: 100%;
    background: var(--sun) !important;
    color: #fff !important;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    margin-top: 14px;
    z-index: 10;
    position: relative;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    background: #000;
    color: #fff;
}

.footer a { color: #fff; }

/* RESPONSIVE */
@media(max-width: 900px) {
    .nav { display: none; }
    .hamburger { display: block; }
}

.m-card {
    background: linear-gradient(145deg, #fff7da, #fff);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 28px rgba(255, 174, 0, 0.25);
    position: relative;
    z-index: 2;
}

button, .btn, .book-btn {
    box-shadow: 0 6px 16px rgba(255, 174, 0, 0.35);
}
button:hover, .btn:hover, .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 174, 0, 0.45);
    transition: 0.25s ease;
}


.medit-bg {
    background: linear-gradient(135deg, #fff7da 0%, #ecf8ff 100%);
    padding: 60px 0;
}


.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #f5a623, #f76b1c);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 9999;
}

/* Amikor látszódnia kell */
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hover effekt – mediterrán glow */
.floating-cta:hover {
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}


/* SCROLL ANIMATIONS – STRONGER VERSION */
.medit-fade {
    opacity: 0;
    transform: translateY(60px); /* nagyobb mozgás */
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.medit-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glow erősebb */
.medit-glow {
    box-shadow: 0 0 0 rgba(255, 193, 134, 0);
    transition: box-shadow 1.2s ease-out;
}

.medit-glow.visible {
    box-shadow: 0 10px 35px rgba(255, 193, 134, 0.55);
}
