body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f9fc;
    color:#222;
}

.hero-header {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}



.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.booksy-section {
    padding: 70px 20px;
    background: #f7f7f7;
}

.booksy-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.booksy-card h2 {
    margin-bottom: 20px;
}

.booksy-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .main-nav {
        gap: 6px;
        padding: 10px;
    }

    .main-nav a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
}

#backToTop:hover {
    background: #b89024;
    transform: translateY(-3px);
}
.btn-booksy {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn-booksy:hover {
    background: #b89024;
    transform: translateY(-2px);
}





.header-banner {
    width: 100%;
    height: auto;
    display: block;
    max-height: none;
}

.main-nav {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    background: #0f2c5c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all .3s ease;
}

.main-nav a:hover {
    background: #d4af37;
    color: #0f2c5c;
    transform: translateY(-2px);
}


.services-section,
.loyalty-section {
    padding: 10px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
    margin-top: 20px;
}

.service-card,
.loyalty-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}


.service-card {
    
    border: 3px solid #d4af37;
}
.service-card span {
    display: block;
    margin-top: 15px;
    color: #d4af37;
    font-weight: bold;
}

.service-extras {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.service-extras ul {
    padding-left: 20px;
}

.loyalty-card {
    text-align: center;
    border: 3px solid #d4af37;
}

.loyalty-card h2 {
    color: #002b5c;
}

.loyalty-card h3 {
    color: #d4af37;
}



.container{
    max-width:1100px;
    margin:auto;
    padding:10px 20px;
}

.section{
    margin-bottom:40px;
}


.gallery-section {
    padding: 60px 20px;
    background: #fff;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-modal {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.gallery-modal img {
    max-width:90%;
    max-height:85vh;
}

.gallery-prev,
.gallery-next {
    position:absolute;
    background:none;
    border:none;
    color:#fff;
    font-size:50px;
    cursor:pointer;
}

.gallery-prev {
    left:30px;
}

.gallery-next {
    right:30px;
}

.close-modal {
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}


.gallery-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .2s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}


.card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.youtube-section{
    padding:60px 20px;
    background:#f8f8f8;
}

.youtube-card{
    max-width:1100px;
    margin:auto;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    display:flex;
    flex-wrap:wrap;
}

.youtube-card img{
    width:400px;
    max-width:100%;
    object-fit:cover;
}

.youtube-content{
    flex:1;
    padding:40px;
}

.social-buttons{
    margin-top:30px;
}

.btn-social{
    display:inline-block;
    background:#002b5c;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:8px;
    margin-right:10px;
    margin-bottom:10px;
}

.contact-section{
    padding:60px 20px;
}

.contact-card{
    max-width:800px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.contact-card form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card input,
.contact-card textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-card button{
    background:#002b5c;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.footer {
    background: #002b5c;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-size: 15px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.youtube-card img {
    width: 400px;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width:768px) {
    .youtube-card img {
        margin: 0 auto;
    }
}


@media (min-width: 769px) {
    .hero-header {
        max-height: 350px;
    }

    .header-banner {
        object-fit: contain;
        width: 100%;
        height: 350px;
    }
}

@media (max-width:768px){
    .header-banner{
        height:20vh;
    }

    .youtube-card{
        flex-direction:column;
    }

    .youtube-content{
        padding:25px;
    }
}
