body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #fff0f5; /* soft pink */
    color: #000;
    line-height: 1.6;
}
header.hero {
    background: #ffe4e1;
    text-align: center;
    padding: 3rem 1rem;
    border-bottom: 2px solid black;
}
h1.zoom {
    font-size: 2.5rem;
    animation: zoomIn 3s ease-in-out infinite alternate;
    color: #d6336c;
    text-shadow: 2px 2px 0 #000;
}
@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
.btn {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}
.btn.gold { background: #d6336c; color: white; }
.btn.outline { border: 2px solid #d6336c; color: #d6336c; background: transparent; }
.section {
    padding: 2rem;
    border-top: 2px solid black;
    background-color: #fff0f5;
}
form input, form textarea {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border: 1px solid #d6336c;
    background: #fff;
}
button {
    background: #d6336c;
    color: white;
    padding: 0.75rem;
    border: none;
    width: 100%;
    font-weight: bold;
}
nav.hidden { display: none; }
nav a {
    display: block;
    padding: 1rem;
    color: #d6336c;
    background: #ffe4e1;
    border-bottom: 1px solid #d6336c;
}
.hamburger {
    font-size: 2rem;
    cursor: pointer;
    color: #d6336c;
    margin-top: 1rem;
}
footer {
    background: #ffe4e1;
    padding: 1rem;
    text-align: center;
    color: #000;
    border-top: 2px solid black;
}


.white-stroke {
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.black-stroke {
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
}


.collapsible summary {
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    color: #d6336c;
    padding: 0.5rem;
    background-color: #ffeef2;
    border: 1px solid #d6336c;
    border-radius: 4px;
    margin-top: 1rem;
}

.collapsible p {
    margin: 0.5rem 1rem;
    background-color: #fff7fa;
    padding: 0.75rem;
    border-left: 3px solid #d6336c;
}

.collapsible hr {
    border: none;
    border-top: 1px solid #d6336c;
    margin: 1rem 0;
}


.about-her {
    background: #fff0f5;
    padding: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 3px solid black;
}

.about-title {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: black;
}

.about-subtitle {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #d6336c;
}

.about-her h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    color: #d6336c;
}

.about-her p, .about-her li {
    font-size: 1.05rem;
    color: #000;
}

.about-her ul {
    margin-left: 1.2rem;
}

.divider {
    border: none;
    border-top: 1px solid #d6336c;
    margin: 2rem 0;
}


.duration-block {
    position: relative;
    color: white;
}

.overlay-box {
    background: rgba(0,0,0,0.55);
    padding: 2rem;
    border-radius: 12px;
}

.duration-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd1dc;
}

.duration-item h3 {
    color: #ffb6c1;
}

.duration-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}


.expectations-block {
    position: relative;
    color: white;
}

.overlay-expect {
    background: rgba(0,0,0,0.55);
    padding: 2rem;
    border-radius: 12px;
}

.expect-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd1dc;
}

.expect-item h3 {
    color: #ffb6c1;
    margin-bottom: 0.5rem;
}

.expect-item p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.gallery-section {
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
}

.circle-gallery {
    position: relative;
    width: 320px;
    height: 320px;
    margin: auto;
}

.circle-item {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #ffb6c1;
    border-radius: 50%;
}

/* Position 6 items around a circle */
.circle-gallery .circle-item:nth-child(1) { top: 0; left: 115px; }
.circle-gallery .circle-item:nth-child(2) { top: 55px; right: 0; }
.circle-gallery .circle-item:nth-child(3) { bottom: 55px; right: 0; }
.circle-gallery .circle-item:nth-child(4) { bottom: 0; left: 115px; }
.circle-gallery .circle-item:nth-child(5) { bottom: 55px; left: 0; }
.circle-gallery .circle-item:nth-child(6) { top: 55px; left: 0; }

/* Dotted pink circular arrow */
.dotted-arrow {
    position: absolute;
    top: 0; left: 0;
    width: 320px;
    height: 320px;
    border: 3px dotted #ffb6c1;
    border-radius: 50%;
    animation: rotate 18s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}





.booking-title {
    text-align:center;
    font-size:1.7rem;
    color:#d6336c;
    font-weight:bold;
    margin-bottom:1.5rem;
}

.booking-btn {
    width:100%;
    padding:1rem;
    background:#d6336c;
    color:white;
    border:none;
    border-radius:6px;
    font-size:1.2rem;
    font-weight:bold;
}

.reviews-section {
    padding: 2rem;
}
.reviews-title {
    text-align:center;
    font-size:2rem;
    color:#d6336c;
    font-weight:bold;
    margin-bottom:1.5rem;
}
.reviews-container {
    display:flex;
    flex-direction:column;
    gap:1.2rem;
}
.review-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 182, 193, 0.25);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding:1rem;
    box-shadow:0 4px 20px rgba(0,0,0,0.15);
}
.review-card h3 {
    color:#d6336c;
    margin-bottom:0.4rem;
}
.leave-title {
    margin-top:2rem;
    text-align:center;
    color:#d6336c;
    font-size:1.5rem;
    font-weight:bold;
}
.review-form {
    display:flex;
    flex-direction:column;
    gap:1rem;
    margin-top:1rem;
}
.review-form input, .review-form textarea {
    width:100%;
    padding:0.8rem;
    border-radius:8px;
    border:2px solid #d6336c;
    background:white;
}
.review-form button {
    background:#d6336c;
    color:white;
    padding:1rem;
    border:none;
    border-radius:8px;
    font-size:1.2rem;
    font-weight:bold;
}

.terms-section {
    padding: 2rem;
}
.terms-title {
    text-align:center;
    font-size:2rem;
    color:#d6336c;
    font-weight:bold;
    margin-bottom:1.5rem;
}
.tc-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 182, 193, 0.25);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 1.3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.tc-card h3 {
    color:#d6336c;
    margin-bottom:0.6rem;
    font-size:1.3rem;
}
.tc-card p {
    margin-bottom:0.6rem;
    font-size:1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
    margin-top: 1.2rem;
}
.c-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 12px;
}






.booking-block * {
    position: relative;
    z-index: 2;
}


.booking-block {
    position: relative;
    background: url('IMG_2514.jpeg') center/cover no-repeat !important;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.booking-inner { max-width:700px; width:100%; padding:30px; border-radius:18px; background:rgba(0,0,0,0.25); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); box-shadow:0 4px 20px rgba(0,0,0,0.3); }

.booking-block::before {
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.05);
    z-index:0;
}

.booking-block * {
    position:relative;
    z-index:2;
}


.booking-inner * {
    font-weight: 700 !important;
    color: #ffffff !important;
    -webkit-text-stroke: 0.6px #ffffff;
    text-shadow: 0px 0px 3px rgba(0,0,0,0.4);
}


.booking-form input,
.booking-form textarea,
.booking-form select {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
}
