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

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4efea;
    color: #222;
}

header {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    margin: 15px;
    border-radius:10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.availability-cta {
    display: block;
    text-decoration: none;
    background: #ffffff;
    color: #4f3d2a;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 0 auto 20px;
    width: min(100%, 680px);
    text-align: center;
    border: 1px solid #ead9c0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.availability-cta:hover {
    transform: translateY(-2px);
    border-color: #d4af37;
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.18);
}

.availability-cta-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.availability-cta-subtitle {
    display: block;
    font-size: 0.95rem;
    opacity: 0.95;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    flex-wrap: nowrap;
    position: relative;
}

.logo {
    margin-right: 0;
}

.site-logo {
    display: block;
    width: 400px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: auto;
    margin-right: 0;
}
a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
}

nav a {
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 5px;
    white-space: nowrap;
    transition: border-color 0.3s ease;
}

nav a:hover {
    border-color: #d4af37;
}

nav a.active {
    background-color: #d4af37;
    color: #222;
    border-color: #d4af37;
}
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    text-align: center;
    border-radius: 15px;
    box-shadow: inset 120px 0 80px -60px rgba(0, 0, 0, 0.7), inset -120px 0 80px -60px rgba(0, 0, 0, 0.7);
    margin: 20px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
   width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}
.hero-content, h1{
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: rgba(212, 175, 55, 0.82);
    color: #f6f1e8;
    border: 1px solid rgba(212, 175, 55, 0.8);
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
    text-shadow: none;
}

.btn:hover {
    background-color: rgba(212, 175, 55, 0.92);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.slide:nth-child(1) {
    background-image: url("images/villa1.1.jpg");
}

.slide:nth-child(2) {
    background-image: url("images/villa2.1.jpg");
}

.slide:nth-child(3) {
    background-image: url("images/villa3.1.jpg");
}

.slide:nth-child(4) {
    background-image: url("images/villa4.1.jpg");
}
.logo{

font-size:24px;

font-weight:bold;

letter-spacing:1px;

color:#d4af37;

}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.property-box {
    background-color: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}

.property-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-carousel {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.property-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.property-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.property-box:hover .carousel-button,
.property-carousel:hover .carousel-button,
.carousel-button:focus-visible {
    opacity: 1;
    pointer-events: auto;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.carousel-button.prev {
    left: 12px;
}

.carousel-button.next {
    right: 12px;
}

.property-name {
    width: 100%;
    padding: 20px 20px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    background-color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 60px;
}

.property-box:hover .property-name {
    background-color: #d4af37;
    color: #222;
}

.about {
    padding: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    text-align: center;
}

.about-content h1 {
    position: static;
    width: 100%;
    max-width: none;
    padding: 0;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: #d4af37;
    text-shadow: none;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
}

.about-content h1 span {
    display: inline;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.property-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6a4d16;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 8px;
}

.property-location:hover {
    text-decoration: underline;
}

.feature-box {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-box h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-box p {
    line-height: 1.7;
}

.property-name::before {
    content: attr(data-label);
}

.property-box:hover .property-name::before {
    content: 'Learn More';
}



footer {
    background-color: #d4af37;
    color: white;
    padding: 40px 60px 20px;
}

.property-availability {
    margin: 32px auto 0;
    padding: 20px;
    border: 1px solid #e7dccf;
    border-radius: 16px;
    background: linear-gradient(135deg, #fffaf4 0%, #f7efe2 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 680px;
    width: min(100%, 680px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.availability-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.availability-header h2 {
    color: #8a5f21;
}

.availability-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    color: #8a5f21;
    margin-bottom: 6px;
    font-weight: 700;
    text-align: center;
}

.availability-description {
    margin-top: 12px;
    line-height: 1.6;
    color: #5b4a3a;
    text-align: center;
}

.availability-summary {
    display: none;
}

.availability-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.availability-nav-btn {
    border: 1px solid #e0d1bb;
    background: #fffaf2;
    color: #5f4828;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.availability-current-month {
    min-width: 140px;
    text-align: center;
    font-weight: 700;
    color: #6a4d16;
}

.availability-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
    width: 100%;
}

.availability-weekdays span {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #8a5f21;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.availability-calendar {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
}

.availability-month-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ebdfcf;
    border-radius: 14px;
    padding: 12px;
    width: 100%;
    max-width: 500px;
}

.availability-month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 7px;
}

.availability-day {
    min-height: 44px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ebdfcf;
    color: #2c241d;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.availability-day:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.availability-day.muted {
    opacity: 0.45;
    cursor: default;
}

.availability-day.booked {
    background-color: #ffefef;
    color: #b42318;
    border-color: #f1a6a6;
    cursor: not-allowed;
}

.availability-day.available {
    background-color: #eefbf2;
    color: #167f3f;
    border-color: #badec1;
}

.availability-day.preview {
    background-color: #dff4e6;
    color: #0f5d2c;
    border-color: #8fd49f;
}

.availability-day.selected {
    background-color: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}

.availability-day.today {
    border: 2px solid #d4af37;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.reservation-section {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.reservation-section h3 {
    font-size: 1.05rem;
    color: #6a4d16;
    margin-bottom: 6px;
}

.reservation-section p {
    color: #5b4a3a;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.reservation-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.reservation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    min-width: 180px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reservation-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.reservation-btn.whatsapp {
    background: #25d366;
}

.reservation-btn.booking {
    background: #003b95;
}

.reservation-btn.airbnb {
    background: #ff385c;
}

.reservation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.reservation-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.reservation-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.reservation-btn.whatsapp .reservation-icon,
.reservation-btn.booking .reservation-icon,
.reservation-btn.airbnb .reservation-icon {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.reservation-btn.whatsapp .reservation-icon {
    background-image: url("https://cdn.simpleicons.org/whatsapp/FFFFFF");
}

.reservation-btn.booking .reservation-icon {
    background-image: url("https://cdn.simpleicons.org/bookingdotcom/FFFFFF");
}

.reservation-btn.airbnb .reservation-icon {
    background-image: url("https://cdn.simpleicons.org/airbnb/FFFFFF");
}

.reservation-btn .reservation-icon svg,
.reservation-btn .reservation-icon img {
    display: none;
}

.reviews-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(1000px, calc(100% - 160px));
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -34px;
    padding: 0 0 72px;
    overflow: visible;
}

.reviews-heading {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    margin: 0 auto 8px;
    overflow: visible;
}

.section-kicker {
    margin: 0;
    color: #b06a3c;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0;
}

.reviews-heading h2 {
    margin: 0;
    color: #2c241d;
    font-size: 1.65rem;
}

.reviews-heading h2.section-kicker {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ead9c0;
    border-radius: 999px;
    background: #fffaf2;
    color: #6a4d16;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 18px rgba(76, 53, 28, 0.08);
}

.reviews-carousel {
    position: relative;
    width: 100%;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid #ead9c0;
    border-radius: 14px;
    background: #fffaf2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.reviews-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 66px;
    bottom: 0;
    left: 66px;
    z-index: 4;
    background: #fffaf2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    border-radius: 14px;
    margin: 0;
}

.reviews-carousel.review-changing::after {
    opacity: 1;
}

.review-slide {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: 340px;
    padding: 76px 110px 76px;
    text-align: center;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    z-index: 0;
    transition: none;
}

.review-slide.active {
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    z-index: 1;
    transition: none;
}

.review-quote {
    max-width: 720px;
    margin: 0;
    color: #4e3f31;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.55;
}

.review-author {
    margin: 14px 0 0;
    color: #4e3f31;
    font-size: 0.85rem;
}

.review-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 20px 22px;
    background: transparent;
    color: #fff;
    font-size: 0;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(28px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.review-more::before {
    content: 'Read more reviews';
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: #a47a2c;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
}

.review-slide:hover .review-more,
.review-slide:focus-within .review-more {
    opacity: 1;
    transform: translateY(0);
}

.review-more:hover::before,
.review-more:focus-visible::before {
    background: #c18a2d;
    transform: translateY(-2px);
}

.reviews-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(44, 36, 29, 0.72);
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}

.reviews-button:hover,
.reviews-button:focus-visible {
    background: #2c241d;
}

.reviews-button.prev {
    left: 18px;
}

.reviews-button.next {
    right: 18px;
}

.villa-name-container {
    display: flex;
    justify-content: center;
    padding: 10px 20px 0;
}

.villa-name {
    font-size: 3.2rem;
    color: #000;
    text-shadow: none;
    text-align: center;}

.villa-location {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
}

.villa-hero-box {
    width: min(100%, 760px);
    margin: 6px auto 8px;
    padding: 10px 16px 14px;
    background: #fffaf2;
    border: 1px solid #ead9c0;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.villa-hero-box .villa-name-container {
    padding: 0;
}

.villa-hero-box .villa-name {
    font-size: 2.6rem;
    padding: 0;
    max-width: none;
    line-height: 1.1;
}

.villa-hero-box .villa-location {
    margin-top: 7px;
}

.villa-hero-box .property-description {
    margin-top: 9px;
}

.property-details {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 80px 60px;
}

.property-description {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 16px;
}

.villa-location + .property-description {
    text-align: center;
    max-width: 900px;
    margin: 14px auto 0;
    padding: 0 20px;
}

.mykonos-gallery {
    height: 420px;
    margin: 18px 0 24px;
    border-radius: 14px;
}

.cadastral-data {
    margin: 18px 0 0;
    color: #6a625a;
    font-size: 0.85rem;
    text-align: center;
}

.villa-gallery {
    height: 420px;
    margin: 18px 0 24px;
    border-radius: 14px;
}

.villa-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 8px 0 28px;
}

.villa-info-box {
    background: #fffaf2;
    border: 1px solid #ead9c0;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.villa-info-box h2 {
    color: #6a4d16;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.villa-info-box h3 {
    color: #8a5f21;
    font-size: 1rem;
    margin: 6px 0 8px;
}

.villa-info-box p {
    color: #4e3f31;
    line-height: 1.75;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.villa-info-box ul {
    margin: 6px 0 0;
    padding-left: 0;
    color: #4e3f31;
    line-height: 1.7;
    list-style: none;
}

.villa-info-box li + li {
    margin-top: 4px;
}

.villa-info-box:last-child h2,
.villa-info-box:last-child li {
    color: #6a4d16;
}

.villa-info-box:last-child li {
    color: #4e3f31;
}

.two-column-list {
    columns: 2;
    column-gap: 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-left: 0;
}

.two-column-list li {
    break-inside: avoid;
}

.location-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.location-box-header h2 {
    margin-bottom: 0;
}

.location-map-link {
    white-space: nowrap;
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-top: 14px;
    margin-right: 0;
    color: #8a5f21;
    text-decoration: none;
}

.location-map-link:hover {
    color: #6a4d16;
    text-decoration: underline;
}

.location-info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-info-box .location-map-link {
    margin-top: auto;
    padding-top: 12px;
}

.mykonos-gallery .property-slide img {
    object-position: center;
}

.availability-day.past {
    opacity: 0.65;
    cursor: default;
}

@media (max-width: 900px) {
    .availability-calendar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    header {
        margin: 10px;
    }

    nav {
        flex-direction: column;
        gap: 8px;
        padding: 8px 12px 12px;
    }

    .logo {
        margin: 0;
    }

    .site-logo {
        width: 230px;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
        margin: 0;
    }

    nav a {
        padding: 6px 10px;
        font-size: 14px;
    }

    .admin-page nav ul {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .admin-page nav li,
    .admin-page nav a {
        width: 100%;
        text-align: center;
    }

    .hero {
        height: 52vh;
        min-height: 360px;
        margin: 12px;
    }

    .hero-content {
        padding: 18px 14px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 12px 40px;
    }

    .property-carousel,
    .mykonos-gallery,
    .villa-gallery {
        height: 300px;
    }

    .property-box {
        border-radius: 12px;
    }

    .about {
        padding: 20px 12px 40px;
    }

    .about-content {
        padding: 18px 14px;
    }

    .about-content h1 span {
        display: block;
    }

    .about-feature,
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-features {
        gap: 14px;
    }

    .property-details {
        padding: 0 12px 40px;
    }

    .villa-hero-box {
        width: calc(100% - 12px);
        margin: 8px auto 10px;
        padding: 12px 12px 14px;
    }

    .villa-hero-box .villa-name {
        font-size: 2.1rem;
    }

    .villa-hero-box .villa-location {
        font-size: 1rem;
    }

    .villa-hero-box .property-description {
        padding: 0 6px;
    }

    .villa-info-box {
        padding: 14px 12px;
    }

    .villa-info-box p,
    .villa-info-box ul,
    .villa-info-box li {
        text-align: center;
    }

    .two-column-list {
        columns: 1;
        max-width: 100%;
        text-align: center;
    }

    .location-info-box {
        align-items: center;
    }

    .location-map-link {
        white-space: normal;
    }

    .availability-day {
        min-height: 38px;
        font-size: 0.9rem;
    }

    .reviews-section {
        width: calc(100% - 16px);
        margin-top: -24px;
        padding: 0 0 56px;
    }

    .reviews-heading h2 {
        font-size: 1.35rem;
    }

    .reviews-carousel::after {
        right: 0;
        left: 0;
        border-radius: 13px;
    }

    .reviews-button {
        z-index: 5;
    }

    .review-slide {
        min-height: 390px;
        padding: 74px 18px 60px;
    }

    .review-quote {
        font-size: 1.05rem;
    }

    .review-more::before {
        letter-spacing: 0.06em;
        font-size: 0.8rem;
    }

    footer {
        padding: 32px 18px 20px;
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links,
.footer-contact,
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: white;
    margin-top: 10px;
}

.footer-links a:hover {
    color: #000000;
}

footer h2,
footer h3 {
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    color: #fff
    ;
}

.admin-main {
    padding: 24px 20px 60px;
}

.admin-shell {
    width: min(100%, 980px);
    margin: 0 auto;
}

.admin-description {
    text-align: center;
    max-width: 760px;
    margin: 14px auto 24px;
}

.admin-login,
.admin-panel {
    background: #fffaf2;
    border: 1px solid #ead9c0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.admin-login h2 {
    color: #6a4d16;
    text-align: center;
    margin-bottom: 6px;
}

.admin-login p {
    text-align: center;
    color: #5b4a3a;
    margin-bottom: 14px;
}

.admin-login-form {
    display: grid;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto;
}

.admin-login-form label {
    display: grid;
    gap: 6px;
    color: #5b4a3a;
    font-weight: 700;
}

.admin-login-form input {
    width: 100%;
    border: 1px solid #e0d1bb;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.95rem;
    background: #fff;
}

.admin-button {
    border: none;
    border-radius: 999px;
    background: #6a4d16;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.admin-button:hover {
    background: #8a5f21;
    transform: translateY(-1px);
}

.admin-button.secondary {
    background: #8f8578;
}

.admin-button.secondary:hover {
    background: #a49b8f;
}

.mode-button.active {
    background: #d4af37;
    color: #222;
}

.admin-error {
    min-height: 20px;
    color: #b42318;
    margin: 0;
    text-align: center;
}

.admin-hint {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #8a5f21;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-mode-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-status {
    color: #6a4d16;
    font-weight: 700;
}

.admin-nav {
    margin-top: 14px;
}

.admin-calendar-title {
    color: #6a4d16;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.1;
}

.admin-villa-picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #6a4d16;
    font-weight: 700;
}

.admin-villa-picker select {
    border: 1px solid #e0d1bb;
    border-radius: 10px;
    padding: 8px 10px;
    background: #fff;
    color: #5b4a3a;
    font-weight: 700;
}

.admin-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
    color: #5b4a3a;
    font-weight: 600;
}

.admin-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.legend-swatch {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
}

.legend-swatch.booked {
    background: #ffefef;
    border: 1px solid #f1a6a6;
}

.legend-swatch.vacant {
    background: #eefbf2;
    border: 1px solid #badec1;
}

.legend-swatch.default-booked {
    background: #fde7e7;
    border: 1px dashed #d56f6f;
}

.legend-swatch.overridden {
    background: #fff9df;
    border: 1px solid #d4af37;
}

.admin-day {
    position: relative;
    min-height: 44px;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebdfcf;
    background: #fff;
    color: #2c241d;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.admin-day:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.admin-day.booked {
    background-color: #ffefef;
    color: #b42318;
    border-color: #f1a6a6;
}

.admin-day.vacant {
    background-color: #eefbf2;
    color: #167f3f;
    border-color: #badec1;
}

.admin-day.default-booked {
    border-style: dashed;
}

.admin-day.overridden {
    box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.55);
}

.admin-day.check-in::after,
.admin-day.check-out::after {
    position: absolute;
    right: 4px;
    bottom: 3px;
    font-size: 0.55rem;
    font-weight: 700;
}

.admin-day.check-in::after {
    content: 'IN';
    color: #147a4b;
}

.admin-day.check-out::after {
    content: 'OUT';
    color: #a33b2d;
}

.admin-day.check-in.check-out::after {
    content: 'IN/OUT';
    right: 2px;
    font-size: 0.48rem;
    color: #6a4d16;
}

.admin-day.muted {
    opacity: 0.45;
}

.admin-day.past {
    opacity: 0.75;
}

@media (max-width: 700px) {
    .admin-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-mode-group {
        width: 100%;
    }

    .admin-button {
        width: 100%;
        text-align: center;
    }

    .admin-villa-picker {
        flex-direction: column;
        align-items: stretch;
    }
}

.footer-logo {
    display: block;
    width: min(380px, 100%);
    height: auto;
}