body {
    font-family: 'Georgia', 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f5f1 0%, #e8ddd4 50%, #d4c4b0 100%);
    color: #3c2415;
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    color: #fff;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    font-size: 1.1em;
    letter-spacing: 1.2px;
    text-align: center;
    border-bottom: 3px solid #daa520;
}

.navbar a {
    color: #f5deb3;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.navbar a:hover {
    color: #fff;
    text-shadow: 0 0 12px #daa520, 2px 2px 4px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.content {
    padding: 40px 8vw;
    background: rgba(248, 245, 241, 0.95);
    min-height: 80vh;
    box-shadow: inset 0 0 50px rgba(218, 165, 32, 0.1);
}

h1, h2 {
    color: #8b4513;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
    font-weight: 700;
}

h1 {
    font-size: 2.8em;
    text-align: center;
    border-bottom: 3px solid #daa520;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.2em;
}

.bio-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5d4037;
    font-size: 1.1em;
    text-align: justify;
}

.amber-cursive {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 3.2em;
    margin: 25px 0 15px 0;
    color: #8b4513;
    text-shadow: 3px 3px 6px rgba(139, 69, 19, 0.2);
    text-align: center;
}

.amber-details {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: #6d4c41;
    font-weight: 500;
    text-align: center;
}

.amber-quote {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: #8b4513;
    text-shadow: 1px 1px 3px rgba(139, 69, 19, 0.1);
    font-size: 1.15em;
    text-align: center;
    border-left: 4px solid #daa520;
    padding-left: 20px;
    margin-left: 20px;
}

.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(139, 69, 19, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
}

.hero-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.3);
    border: 4px solid #daa520;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(139, 69, 19, 0.4);
}

/* Gallery Styles with Fixed Layout */
.gallery-viewer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.gallery-viewer img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
    background: #fff;
    border: 3px solid #daa520;
}

.gallery-viewer-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 360px;
    min-height: 360px;
    max-height: 360px;
    position: relative;
    background: linear-gradient(135deg, #f8f5f1, #e8ddd4);
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(139, 69, 19, 0.2);
    border: 2px solid #daa520;
}

/* Fixed containers to prevent layout shifts */
.gallery-main-container {
    width: 450px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-preview-container {
    width: 130px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-main {
    max-height: 340px;
    max-width: 450px;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
    z-index: 2;
    background: #fff;
    transition: all 0.3s ease;
    border: 3px solid #daa520;
    object-fit: cover;
    object-position: center;
}

.gallery-preview {
    max-height: 200px;
    max-width: 130px;
    width: auto;
    height: auto;
    opacity: 0.7;
    filter: blur(1px) sepia(20%);
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 1;
    background: #f8f5f1;
    border: 2px solid #cd853f;
    object-fit: cover;
    object-position: center;
}

.gallery-nav {
    background: linear-gradient(135deg, #daa520, #b8860b);
    border: none;
    font-size: 2.8em;
    color: #fff;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
    height: 70px;
    width: 70px;
    min-width: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    flex-shrink: 0;
    position: relative;
}

.gallery-nav:hover {
    background: linear-gradient(135deg, #f0c14b, #daa520);
    color: #8b4513;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
}

.gallery-nav-left {
    margin-right: 8px;
}

.gallery-nav-right {
    margin-left: 8px;
}

.gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 15px 0;
    justify-content: center;
    background: linear-gradient(135deg, #f8f5f1, #e8ddd4);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.15);
    border: 2px solid #daa520;
}

.gallery-thumbnails img {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    border: 2px solid #cd853f;
    background: #fff;
    object-fit: cover;
    object-position: center;
}

.gallery-thumbnails img:hover, .gallery-thumbnails img:focus {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.3);
    border-color: #daa520;
}

/* Booking Form */
#pnlBooking, .booking-form {
    background: linear-gradient(135deg, #fff 0%, #f8f5f1 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(139, 69, 19, 0.15);
    max-width: 500px;
    margin: 0 auto 40px auto;
    border: 2px solid #daa520;
}

#pnlBooking label, .booking-form label {
    color: #8b4513;
    font-weight: 700;
}

#pnlBooking input, #pnlBooking textarea, .booking-form input, .booking-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #daa520;
    background: #fff;
    color: #3c2415;
    font-size: 1.05em;
    transition: all 0.3s ease;
}

#pnlBooking input:focus, #pnlBooking textarea:focus, .booking-form input:focus, .booking-form textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background: #fefefe;
}

#pnlBooking input[type=submit], #pnlBooking button, .booking-form input[type=submit], .booking-form button {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

#pnlBooking input[type=submit]:hover, #pnlBooking button:hover, .booking-form input[type=submit]:hover, .booking-form button:hover {
    background: linear-gradient(135deg, #a0522d 0%, #cd853f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Bio Section Styles */
.bio-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-direction: row-reverse;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
}

.bio-img {
    max-width: 360px;
    width: 30vw;
    min-width: 240px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25);
    border: 4px solid #daa520;
    background: #fff;
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
}

.bio-img:hover {
    transform: scale(1.02);
}

.bio-main-text {
    flex: 1 1 350px;
    min-width: 280px;
}

@media (max-width: 900px) {
    .bio-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bio-img {
        width: 85vw;
        max-width: 360px;
        min-width: 0;
        margin-bottom: 25px;
    }
    .bio-main-text {
        min-width: 0;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #cd853f 100%);
    color: #f5deb3;
    text-align: center;
    padding: 25px 0 15px 0;
    font-size: 1.05em;
    letter-spacing: 1px;
    border-top: 4px solid #daa520;
    margin-top: 40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(139, 69, 19, 0.2);
}

.footer-socials {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}

.footer-socials a {
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    transform: scale(1.2) rotate(5deg);
}

.footer-socials img {
    width: 32px;
    height: 32px;
    filter: brightness(1.1) contrast(1.1);
    vertical-align: middle;
    border-radius: 50%;
    border: 2px solid #daa520;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.footer-socials img:hover {
    border-color: #f5deb3;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 600px) {
    .site-footer { font-size: 1em; padding: 20px 0 12px 0; }
    .footer-socials img { width: 28px; height: 28px; }
}

/* YouTube Section Styles */
.youtube-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px 0 40px 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08) 0%, rgba(255, 255, 255, 0.3) 100%);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.15);
}

.youtube-player-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.2);
    padding: 20px;
    border: 3px solid #daa520;
}

.youtube-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 25px;
}

.youtube-menu-btn {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f5deb3;
    border: 2px solid #daa520;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1.05em;
    font-family: 'Georgia', serif;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.youtube-menu-btn:before {
    content: '\266B'; /* musical note */
    color: #daa520;
    margin-right: 8px;
    font-size: 1.2em;
    vertical-align: middle;
}

.youtube-menu-btn:hover, .youtube-menu-btn:focus {
    background: linear-gradient(135deg, #daa520 0%, #f0c14b 100%);
    color: #8b4513;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
    transform: translateY(-3px) scale(1.05);
    border-color: #8b4513;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.youtube-menu-btn:before:hover {
    color: #8b4513;
}

@media (max-width: 700px) {
    .youtube-player-wrapper iframe {
        width: 95vw !important;
        max-width: 95vw !important;
        height: 240px !important;
    }
    .youtube-player-wrapper {
        padding: 10px;
        margin: 0 -10px 25px -10px;
    }
    .youtube-menu-btn {
        font-size: 0.95em;
        padding: 10px 18px;
    }
}

/* Form Styles */
.form-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-label {
    min-width: 120px;
    text-align: right;
    margin-right: 20px;
    font-weight: 700;
    color: #8b4513;
    padding-top: 10px;
    font-size: 1.1em;
}

.form-input {
    flex: 1 1 250px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #daa520;
    background: #fff;
    color: #3c2415;
    font-size: 1.05em;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background: #fefefe;
}

.form-group-submit {
    justify-content: center;
    margin-top: 10px;
}

.form-submit {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f5deb3;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.form-submit:hover, .form-submit:focus {
    background: linear-gradient(135deg, #a0522d 0%, #cd853f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
}

@media (max-width: 700px) {
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .form-label {
        text-align: left;
        margin-bottom: 8px;
        margin-right: 0;
        padding-top: 0;
    }
    .form-group-submit {
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .content { padding: 25px 4vw; }
    .gallery-main-container { width: 300px; height: 220px; }
    .gallery-main { max-width: 300px; max-height: 220px; }
    .gallery-viewer-fixed { height: 240px; min-height: 240px; max-height: 240px; }
    .gallery-preview-container { width: 70px; height: 100px; }
    .gallery-preview { max-height: 100px; max-width: 70px; }
    .gallery-nav { font-size: 2em; height: 50px; width: 50px; min-width: 50px; min-height: 50px; }
}

@media (max-width: 600px) {
    .content { padding: 15px 3vw; }
    .gallery-main-container { width: 250px; height: 160px; }
    .gallery-main { max-width: 250px; max-height: 160px; }
    .gallery-viewer-fixed { height: 180px; min-height: 180px; max-height: 180px; gap: 8px; }
    .gallery-preview-container { width: 40px; height: 60px; }
    .gallery-preview { max-height: 60px; max-width: 40px; }
    .gallery-thumbnails img { height: 60px; width: 60px; min-width: 60px; }
    .gallery-nav { font-size: 1.5em; height: 40px; width: 40px; min-width: 40px; min-height: 40px; }
    .home-hero { margin-top: 15px; padding: 20px; }
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    .amber-cursive { font-size: 2.5em; }
}

/* Additional professional touches */
.booking-intro {
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-size: 1.15em;
    background: linear-gradient(135deg, #fff 0%, #f8f5f1 100%);
    padding: 30px 35px 25px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(139, 69, 19, 0.15);
    color: #5d4037;
    border: 2px solid #daa520;
    line-height: 1.7;
}

.booking-intro p {
    margin-bottom: 18px;
}

.booking-intro p:first-child {
    font-weight: 600;
    color: #8b4513;
}

.booking-intro p:last-child {
    text-align: right;
    font-style: italic;
    margin-bottom: 0;
}

.hsInput {
    display: none;
}