* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f8e3e8;  /* Soft light pink background */
    color: #333;  /* Darker text for better contrast */
    min-height: 100vh;
    line-height: 1.5;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    background: linear-gradient(120deg, #f8e3e8, #f9d0d8); /* начални цветове (pink) */
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    transition: background 2s ease; /* плавен преход при смяна на сезона */
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* GRADIENT AND LAYER BLUR */
.image-gradient {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.layer-blur {
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px black;
    rotate: -30deg;
    z-index: -1;
}

/* CONTAINER */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 300;
    background: -webkit-linear-gradient(#f8b7d1, #f9a1c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: -5%;
}

nav a {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

nav a:hover {
    color: #ff6ec4;  /* Soft pink hover */
}

nav .selected {
    color: #ff6ec4;
}

.container hr {
    border: none;
    height: 0px;
    margin: 4rem auto;
    width: 80%;
    background: linear-gradient(to right, transparent, #f8b7d1, #f9a1c2, transparent);
    border-radius: 50px;
    opacity: 0.8;
}

/* BUTTONS */
.btn-book {
    background: linear-gradient(to right, #f8b7d1, #f9a1c2);  /* Subtle pink gradient */
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.btn-book {
    position: relative; /* важно за позициониране на шапката */
    overflow: visible;  /* за да се вижда иконата извън бутона */
}

.btn-book .season-icon {
    position: absolute;
    top: -15px;       /* малко над бутона */
    right: -10px;     /* на горния десен ъгъл */
    font-size: 1.5rem;
    pointer-events: none; /* да не пречи на клика */
    animation: blink 1.5s infinite; /* леко премигване */
}

/* Леко премигване на иконата */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


.btn-book:hover {
    background-color: white;
    color: #ff6ec4;  /* Soft pink text */
    opacity: 0.9;
    transform: scale(1.05);
}

/* MAIN CONTENT */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    scroll-snap-align: start;
}

about {
    margin-top: -30rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

about .content {
    padding-left: 70rem;
    margin-top: -55rem;
}

about .content .h1 {
margin-top: 30rem;
}

about .redi {
    margin-top: 20rem;
}

.content {
    max-width: 40rem;
    margin-left: 10%;
    margin-top: -15rem;
    z-index: 999;
}

.tag-box {
    position: relative;
    width: 18rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #f8b7d1, #f9a1c2); /* Soft pink gradient */
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}

.tag-box .tag {
    position: absolute;
    inset: 3px 3px 3px 3px;
    background-color: #f9d0d8;  /* Light blush pink */
    color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    cursor: pointer;
}

.tag-box .tag:hover {
    color: white;
}

/* HEADINGS */
.content h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
    color: #2c2c2c;  /* Darker text for contrast */
}

.description {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    max-width: 35rem;
    color: #555; /* Softer gray text */
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-booknow {
    text-decoration: none;
    border: 1px solid #2a2a2a;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
    background-color: #f9d0d8; /* Light blush pink */
    color: #2c2c2c; /* Darker text for contrast */
}

.btn-booknow:hover {
    background-color: #ff6ec4;  /* Pink hover */
}

.room-3d {
    position: absolute;
    top: 0;
    right: -20%;
    margin-top: 8rem;
    height: 45rem;
    
}

.card-3d {
    position: absolute;
    top: 0;
    right: -20%;
    margin-top: 55rem;
    margin-right: 50rem;
    height: 45rem;
    
}

/* SECTION TITLE */

.main1 .content {
    margin-top: 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-right: -53rem;
    background: linear-gradient(45deg, #f8b7d1, #f9a1c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* IMAGE CARDS WITH GRADIENT */
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8b7d1, #f9a1c2);
    padding: 5px; /* Gradient border effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px; /* Inner image rounding */
    display: block;
}

/* HOVER EFFECT */
.image-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(249, 161, 194, 0.4);
}

/* Slideshow inside image-card */
/* Make slideshow cards same size as image cards */
.slideshow {
    height: 100%; /* inherit the same container height */
    min-height: 300px; /* same as your other image-card images */
}

.slideshow .slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow img {
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}


.slideshow img.active {
    opacity: 1;
}

/* Sleek Gradient Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none; /* remove background */
    border: none;
    font-size: 2rem; /* smaller size */
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    line-height: 1;

    /* Gradient arrow color */
    background: linear-gradient(135deg, #f8b7d1, #f9a1c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.arrow:hover {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
}

.arrow.prev {
    left: 10px;
}

.arrow.next {
    right: 10px;
}

/* ========================= */
/* GALLERY SECTION           */
/* ========================= */
.gallery-section {
    padding: 4rem 2rem;
    scroll-snap-align: start;
}

.gallery-section h1 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(45deg, #f8b7d1, #f9a1c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(249, 161, 194, 0.4);
}

.gallery-section .buttons {
 margin-left: 4rem;
}

/* ========================= */
/* LIGHTBOX                  */
/* ========================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 20px;
}

.lightbox .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.hidden {
    display: none;
}

.back-home-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: linear-gradient(to right, #f8b7d1, #f9a1c2);
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
    margin-left: 43rem;
}

.back-home-btn:hover {
    background-color: #ff6ec4;
    transform: scale(1.05);
    opacity: 0.9;
}

/* ========================= */
/* REVIEWS SECTION           */
/* ========================= */
.reviews-section {
    padding: 4rem 2rem;
    background-color: rgba(255, 230, 240, 0.3);
    scroll-snap-align: start;
}

.reviews-section h1 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(45deg, #f8b7d1, #f9a1c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.review-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review {
    background-color: #fff0f5;
    padding: 2rem;
    border-radius: 20px;
    max-width: 25rem;
    box-shadow: 0 10px 25px rgba(249, 161, 194, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 161, 194, 0.4);
}

.review p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #ff6ec4;
    font-size: 1.2rem;
}

/* ========================= */
/* CONTACT SECTION           */
/* ========================= */
.contact-section {
    padding: 4rem 2rem;
    background-color: rgba(255, 230, 240, 0.2); /* Soft blush overlay */
    scroll-snap-align: start;
}

.contact-section h1 {
    text-align: center;
    font-size: 3rem;
    background: linear-gradient(45deg, #f8b7d1, #f9a1c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 40rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid #f9d0d8;
    font-size: 1rem;
    background-color: #fff0f5;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #ff6ec4;
    box-shadow: 0 0 15px rgba(249, 161, 194, 0.4);
    outline: none;
}

.contact-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(to right, #f8b7d1, #f9a1c2);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-form button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* BURGER MENU */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    cursor: pointer;
}

.burger-line {
    height: 3px;
    width: 100%;
    background-color: #2c2c2c; /* черно за линиите */
    border-radius: 2px;
}

/* MOBILE NAVIGATION */
.mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: rgba(248, 227, 232, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    z-index: 1000;

    /* Плавен преход */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.hidden {
    opacity: 0;
    visibility: hidden;
}


.mobile-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1.2rem;
}

.mobile-nav a:hover {
    color: #ff6ec4;
}

.fall-element {
    position: fixed;
    top: -10%;
    z-index: 9999;
    pointer-events: none;
    animation: fall linear forwards;
    opacity: 0.9;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px); /* леко изместване надолу */
    transition: all 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.surprise-box {
    margin-top: 25px;
    padding: 20px;
    background: rgba(249, 161, 194, 0.1);
    border-left: 5px solid #f9a1c2;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #333;
}

.surprise-box h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #c94f7c;
}

/* Self-Care Tips */
.tips-section {
  text-align: center;
  padding: 40px 20px;
}
.tips-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}
.tips-list li {
  background: #fff0f4;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(249,161,194,0.2);
}

.late-policy-section {
  padding: 4rem 2rem;
  scroll-snap-align: start;
  text-align: center;
}

.late-policy-section h1 {
  font-size: 2.8rem;
  background: linear-gradient(45deg, #f8b7d1, #f9a1c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.policy-box {
  background: #fff0f5;
  padding: 2rem;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(249, 161, 194, 0.15);
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.policy-box ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.policy-box li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-box li::before {
  content: "💅";
  position: absolute;
  left: 0;
}


/* Wall of Love */
.wall-section {
  padding: 40px 20px;
  background: #fffafc;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 700px;
}
.wall-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}
.wall-form input,
.wall-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #f9a1c2;
  font-size: 1rem;
}
.wall-form button {
  background: linear-gradient(90deg,#f8b7d1,#f9a1c2);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wall-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(249,161,194,0.5);
}
.wall-messages {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wall-message {
  background: #fff0f4;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(249,161,194,0.2);
}
.wall-message strong {
  color: #ff6ec4;
}

#admin-panel {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#admin-panel.hidden { display: none; }

.panel-box {
  background: #fff0f5;
  border-radius: 20px;
  padding: 2rem;
  width: 400px;
  box-shadow: 0 10px 30px rgba(249,161,194,0.3);
  text-align: center;
}

.panel-box h2 {
  background: linear-gradient(45deg,#f8b7d1,#f9a1c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.panel-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.panel-actions input,
.panel-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #f9a1c2;
}

.panel-actions button {
  background: linear-gradient(90deg,#f8b7d1,#f9a1c2);
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.panel-actions button:hover {
  transform: scale(1.05);
}

#dayOffList {
  list-style: none;
  padding: 0;
}

#dayOffList li {
  background: #fff;
  margin: 6px 0;
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

#dayOffList button {
  background: none;
  border: none;
  color: #ff6ec4;
  font-weight: bold;
  cursor: pointer;
}


@keyframes fall {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(30px) translateY(55vh) rotate(180deg);
    }
    100% {
        transform: translateX(-30px) translateY(110vh) rotate(360deg);
    }
}




/* SHOW BURGER MENU ON MOBILE */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-form {
        max-width: 90%;
        gap: 1rem;
    }

    .contact-section h1 {
        font-size: 2.5rem;
    }
}

/* ========================= */
/* RESPONSIVE ADJUSTMENTS    */
/* ========================= */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-cards {
        flex-direction: column;
        align-items: center;
    }
}




/* TABLET */
@media (max-width: 1300px) {
    header{
        padding: 2rem 0.5rem;
    }

    header h1 {
        font-size: 3rem;
        font-weight: 300;
    }

    .content{
        margin-top: 85%;
    }
    
    .room-3d{
        scale: 0.6;
        top: -7%;
        margin-right: 10rem;
    }

    .card-3d{
        scale: 0.5;
        width: 50rem;
        top: 70rem;
        right: -51rem;
    }

    about {
        margin-top: 25rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        scroll-snap-align: start;
    }

    about .content {
        padding-left: 1rem;
        margin-top: -90rem;
    }
    
    about .content h1 {
        margin-top: -25rem;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
        margin-right: 1rem;
        background: linear-gradient(45deg, #f8b7d1, #f9a1c2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .gallery {
        display: grid;
        margin-left: -3rem;
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        gap: 1rem;
        padding: 2rem;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    header{
        padding: 1rem 0.1rem;
    }

    nav {
        display: none;
    }

    header h1{
        font-size: 2rem;
    }


    .btn-signing{
        padding: 0.6rem 1.5rem;
    }

    .content{
        margin-top: 25rem;
    }
    
    .room-3d{
        scale: 0.2;
        width: 50rem;
        top: -17rem;
        right: -22rem;
    }

    .card-3d{
        scale: 0.5;
        width: 50rem;
        top: 13rem;
        right: -63rem;
    }

    .content{
        max-width: 30rem;
        margin-left: 10%;
    }

    .tag-box {
        width: 12rem;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .description{
        font-size: 1rem;
    }

    .btn-booknow{
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    .content {
        margin-top: -15rem; /* Намалено от 25rem */
    }

    about .content {
        margin-top: 40rem; /* Намалено от -10rem */
    }

    .contact-section .description {
    margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20rem;
        margin-right: 1rem;
        background: linear-gradient(45deg, #f8b7d1, #f9a1c2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .gallery {
        display: grid;
        margin-left: -5rem;
        margin-top: -16rem;
        grid-template-columns: repeat(2, minmax(170px, 1fr));
        gap: 1rem;
        padding: 2rem;
    }
    

}












