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

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #333;
}

body {
    background: url('/bg2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:30px 2rem;
    /*min-height: 900px;*/
    min-height:100vh;
}

.logo {
    text-align: center;
}

.logo img {
    width: 200px;
    margin-bottom: 10px;
    max-width:50%;
}

h1 {
    font-family: 'Petit Formal Script', cursive;
    color: white;
    font-size: 3.5rem;
    margin-bottom: 5px;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

h2 {
    font-family: 'Petit Formal Script', cursive;
    color: white;
    font-size: 2.1rem;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}
.main-content{
    max-height: 100%;
}

.contact-box {
    width: 500px;
    float: left;
    max-width:100%
}

.contact-iframe {
    max-width:100%;
    float: left;
    border: 1px solid #333;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.90);
    padding: 2rem;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.content-box p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.content-box strong {
    font-weight: 700;
}
.sprt{padding:10px}
@media (min-width: 1599px) {
    .content-box {
        max-width:1200px
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }

    .content-box {
        padding: 1.5rem;
    }

    .content-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }

    .content-box {
        padding: 1rem;
    }

    .content-box p {
        font-size: 0.95rem;
    }
    body{padding:60px 20px;}
    .contact-box{
        max-width:100%;
        width:100%;
    }

}


.navbar {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    position: relative;
    z-index: 882;
}
.hamburger {
    position: fixed;top:5px;right:5px;
    width: 50px;
    height: 45px;
    cursor: pointer;
    display: flex;
    border-radius:5px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 4;
    padding:12px 10px;
    background-color: rgba(255, 255, 255, 0.85);
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #121212;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.side-menu {
    position: fixed;
    top: 0;
    right: -550px;
    width: 450px;
    max-width:100%;
    height: 100%;
    background-color: #222;
    color: white;
    padding: 60px 0px;
    transition: right 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
}

.side-menu ul {
    list-style: none;
    padding: 0 20px;
    width:100%;
    margin: 0;
    max-height: 100%;overflow-y: auto;
}

.side-menu ul li {
    margin: 25px 0;text-align: center
}

.side-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(18px,2vw,22px);
    transition: color 0.3s ease;
}

.side-menu ul li a:hover,.side-menu ul li a.active {
    color: #f0a500;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.side-menu.active {
    right: 0;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}

.content-box ul {
    margin: 16px 0 !important;
    padding-left: 40px !important;
}
.content-box ul li {
    padding: 2px 0 !important;
}

.content-box a {
    color: #333;
    text-decoration: underline;
}
.content-box a:hover {
    text-decoration: none;
}

.fb-floating-button {
    position: fixed;
    top: 80%;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50px 0 0 50px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fb-floating-button img {
    width: 24px;
    height: 24px;
}

.fb-floating-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}