@font-face {
    font-family: "Chillax";
    src: 
    url("fonts/Chillax-Regular.woff") format('woff'), 
    url("fonts/Chillax-Regular.woff2") format('woff2'),
    url("fonts/Chillax-Regular.ttf") format('truetype'),
    url("fonts/Chillax-Regular.otf") format('opentype');
}

@font-face {
    font-family: "ChillaxB";
    src: 
    url("fonts/Chillax-Bold.woff") format('woff'), 
    url("fonts/Chillax-Bold.woff2") format('woff2'),
    url("fonts/Chillax-Bold.ttf") format('truetype');
}

@keyframes moveGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 25% 30%; }
    50% { background-position: 50% 70%; }
    75% { background-position: 75% 40%; }
    100% { background-position: 100% 50%; }
}

@keyframes sheinEffect {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px #84d281;
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
}

* {
    box-sizing: border-box;
  }
  
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
  

html {
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
}

body {
    margin: 0;
    font-family: "Chillax", 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #ffffff;
}

body::-webkit-scrollbar {
    display: none;
}

section {
    padding: 5px 0;
}

section h2 {
    text-align: center;
    font-size: 3em;
    cursor: default;
}

header {
    position: fixed;
    z-index: 1000;
    background: #ffffff;
    width: 100%;
    border-bottom: 1px solid #333;
}

nav {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    color: #333;
    cursor: pointer;
    padding: 0 1em;
    text-decoration: none;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

nav a:hover {
    transform: translateY(-4px);
    background: linear-gradient(90deg, #00ff88, #3aff22, #b6ff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 5s infinite ease-in-out alternate;
}

.hero {
    background: url("img/banner.jpg") center center / cover no-repeat;
    height: 70vh;
}

.hero2 {
    background: url("img/banner.jpg") center center / cover no-repeat;
    height: 40vh;
}

.about-us {
    border-bottom: #333 solid 1px;
}

.about-text {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    font-size: 1.5em;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(0);
    filter: blur(5px);
    transition: all 0.8s ease-out;
}
  
.about-text.left {
    text-align: left;
    padding-right: 80px;
}
  
.about-text.right {
    text-align: right;
    padding-left: 80px;
}
  
.slide-in-left {
    transform: translateX(-100px);
}
  
.slide-in-right {
    transform: translateX(100px);
}
  
.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.services {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
}
  
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
  
.service-box {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 20px #0000000f;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px #0000001f;
}
  
.service-image {
    width: 100%;
    height: 220px;
}
  
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
  
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}
  
.service-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
  
.service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.service-box li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.98rem;
}

.service-footer {
    margin-top: auto;
}
  
.serviceButton {
    background-color: #84d281;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 50px;
    height: 40px;
    width: 100%;
    font-size: 1em;
    animation: sheinEffect 7s infinite;
    transition: background-color 0.3s ease;
}
  
.serviceButton:hover {
    background-color: #0d980d;
}

.review-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
}
  
.star-summary {
    text-align: center;
    font-size: 1.5rem;
    flex: 1;
}

.review-more {
    background: linear-gradient(90deg, #00ff88, #3aff22, #b6ff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 5s infinite ease-in-out alternate;
    text-decoration: none;
    font-size: 1rem;
}
  
.review-card {
    flex: 2;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px #0000000f;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}
  
.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}
  
.inquiry {
    color: #ffffff;
    padding-bottom: 6rem;
    background: url(img/inqury.jpg) center center / cover no-repeat;
}

.inquiryForm {
    pointer-events: none;
    filter: blur(5px);
    cursor: not-allowed;

    max-width: 700px; 
    margin: 50px auto; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    padding: 2rem; 
    padding-bottom: 3rem;
    background-color: #fff; 
    border-radius: 1rem; 
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.inquiryForm:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px #0000001f;
}

.inquiryForm label {
    color: #333;
}

.inquiryForm input,
.inquiryForm select,
.inquiryForm textarea {
    padding: 0.8rem; 
    border-radius: 0.5rem; 
    border: 1px solid #ccc;
}

.inquiryForm textarea {
    resize: vertical;     
    min-height: 50px;    
    max-height: 100px;        
}

.inquiryCategory {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.inquiryCategory:empty {
    display: none;
}

.inquiryButton {
    background-color: #84d281;
    color: #fff;
    padding: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-size: 1em;
    animation: sheinEffect 7s infinite;
    transition: background-color 0.3s ease;
}

.inquiryButton:hover {
    background-color: #0d980d;
}

.contact-info a:hover {
    background: linear-gradient(90deg, #00ff88, #3aff22, #b6ff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 5s infinite ease-in-out alternate;
    text-decoration: none;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2rem 1rem;
}
  
.card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    height: 290px;
}
  
.api {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}
  
.opening-hours p {
    margin: 0.3rem 0;
    font-size: 1rem;
    line-height: 1.5;
}
  
.opening-hours strong {
    color: #333;
    font-weight: 600;
}

footer {
    background-color: #f3f3f3;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
    border-top: 1px solid #ccc;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-branding {
    flex: 1 1 300px;
}

.footer-logo {
    font-family: "ChillaxB", 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.footer-branding p {
    color: #555;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    flex: 2 1 400px;
}

.footer-links h4 {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    color: #222;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    background: linear-gradient(90deg, #00ff88, #3aff22, #b6ff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 5s infinite ease-in-out alternate;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    color: #888;
    font-size: 0.85rem;
}

.legal {
    text-align: center;
    margin: 50px 200px;
}

.legal h2 {
    font-family: "ChillaxB", 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) { 

    nav a {
        font-size: 1em;
    }
    
    .hero {
        height: 40vh;
    }

    .about-text {
        max-width: 300px;
        font-size: 1.2em;
        line-height: 1.3;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services {
        max-width: 300px;
    }

    .review-wrapper {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .review-card {
        display: none;
    }

    .inquiryForm {
        max-width: 300px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-wrapper {
        text-align: left;
        max-width: 320px;
    }

    .credit {
        font-size: 3.5em;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .legal {
        text-align: center;
        margin: 10px 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 60vh;
    }

    .about-text {
        max-width: 600px;
        font-size: 1.4em;
        line-height: 1.4;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services {
        max-width: 750px;
    }

    .review-wrapper {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .inquiryForm {
        max-width: 600px;
    }

    .credit {
        font-size: 3.5em;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services {
        max-width: 900px;
    }

    .review-wrapper {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

@media (min-width: 1281px) and (max-width: 1440px) {

}

@media (min-width: 2560px) {

}