/* Additional luxury styles for rumikonagi.com */

/* Luxury section dividers */
.section-divider {
    position: relative;
    height: 40px;
    margin: 40px 0;
    text-align: center;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.section-divider-icon {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    padding: 5px;
    z-index: 1;
}

.section-divider-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gold);
}

/* Elegant hover effects for images */
.image-zoom-container {
    overflow: hidden;
    border-radius: 5px;
}

.image-zoom {
    transition: transform 0.7s ease;
}

.image-zoom:hover {
    transform: scale(1.05);
}

/* Gold text accents */
.text-gold {
    color: var(--gold);
}

/* Animated elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury quote block */
.luxury-quote {
    position: relative;
    padding: 30px 40px;
    margin: 40px 0;
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--navy);
}

.luxury-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    font-family: 'Georgia', serif;
}

/* Sophisticated buttons */
.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* Luxury form elements */
.form-luxury input,
.form-luxury textarea,
.form-luxury select {
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 15px;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.form-luxury input:focus,
.form-luxury textarea:focus,
.form-luxury select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-luxury label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* Reservation calendar styling */
.calendar-day {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.calendar-day.selected {
    background-color: var(--gold);
    color: white;
    border-color: var(--gold);
}

.calendar-day.unavailable {
    background-color: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

/* Amenity badges */
.amenity-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(212, 175, 55, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin: 3px;
    font-size: 0.85rem;
}

.amenity-badge svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: var(--gold);
}

/* Testimonial card */
.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Georgia', serif;
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 15px;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
}

.testimonial-author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Luxurious pricing table */
.pricing-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 25px;
    color: white;
    text-align: center;
}

.pricing-title {
    font-size: 1.8rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.pricing-subtitle {
    margin: 5px 0 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0 0;
    color: var(--gold);
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 25px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    fill: var(--gold);
}

.pricing-cta {
    padding: 0 25px 25px;
    text-align: center;
}

.pricing-cta .btn-luxury {
    width: 100%;
}
