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

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1800px;
    margin-left: 7%;
    margin-top: 0;
    margin-right: 10%;
}

/* Hero Section */
.hero-section {
    
    background-image: url('img/bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2b2b;
    padding: 20px;
    position: relative;
    overflow: hidden;
}


.header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10%;
    margin-top: -30%;
}

.logo-img {
    width: 80px;
    height: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 500;
}

.hero-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 40px;
}

.our-services-btn {
    background-color: #54623b;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;

}

.our-services-btn:hover {
    background-color: #4a5633;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 20px 0;
}

.header-button {
    color: #54623b;
    font-size: clamp(32px, 6vw, 50px);
    font-weight: 700;
    padding: 0px 30px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 20px;
    text-align: left;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 80px;
    margin-bottom: 40px;
}

.service-box1,
.service-box3,
.service-box2 {
    text-align: left;
    background-color: #fff9ee;        /* light grey background */
  border-radius: 20px;              /* rounded corners */
  padding: 30px;                    /* spacing inside the box */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* subtle shadow */
  transition: transform 0.3s ease;
}

.service-box1:hover,
.service-box3:hover,
.service-box2:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(114, 113, 113, 0.3);
}


.service-box1 h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #3f3324;
}

.service-box3 h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #3f3324;
}

.service-box2 h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #54623b;
}



.service-box2 h3 em {
    color: #3f3324;
    font-size: 30px;
}

.price {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    margin-bottom: 15px;
}

.note {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.book-btn {
    background-color: #54623b;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 35px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: #3f3324;
}

.terms-note {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin: 40px 0 20px;
}

.scroll-down {
    text-align: center;
}

.scroll-down a {
    font-size: 36px;
    color: #54623b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scroll-down a:hover {
    color: #4a5633;
}

/* Terms Section */
.terms-section {
    background-color: #fff9ee;
    padding: 30px 0;
}

.terms-header {
    color: #3f3324;
    font-size: clamp(32px, 6vw, 50px);
    font-weight: 700;
    padding: 0px 0px;
    border-radius: 40px;
    display: inline-block;
}

.important-note {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.important-note strong {
    color: #54623b;
    font-size:20px;
    
}

.emoji {
    font-size: 50px;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.term {
    margin-bottom: 30px;
}

.term h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.term p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.term em {
    font-style: italic;
    color: #555;
}

.closing p {
    font-size: 14px;
    text-align: left;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .html {
        scroll-behavior: smooth;
    }

    .hero-section {
        padding: 40px 2px;
    }
    
    
    .header {
        margin-bottom: 350px;
        margin-left: -5px;
    }
    
    .hero-content {
        margin-left:-5px;
    }


    .logo-img {
        width: 60px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .services {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-box {
        text-align: center;
    }
    
    .terms-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-section,
    .terms-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;

    }
    
    .header-button,
    .terms-header {
        font-size: clamp(35px, 4vw, 40px);

    }
    
    .our-services-btn,
    .book-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .important-note {
        flex-direction: column;
        gap: 5px;
    }
    
    .services-section,
    .terms-section {
        padding: 40px 0;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 20px 0;
    }
    
    .header {
        margin-bottom: 10px;
    }
    
    .hero-content h2 {
        margin-bottom: 5px;
    }
    
    .hero-content h1 {
        margin-bottom: 20px;
    }
}

.about-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.about-section h2 {
  color: #54623b;
    font-size: clamp(32px, 6vw, 50px);
    font-weight: 700;
    padding: 0px 0px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.about-pack {
    background-color: #54623b;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;       /* prevents full width stretch */
    margin: 40px auto;           /* centers horizontally with top/bottom space */
    text-align: center;


}

.about-pack :hover {
    background-color: #4a5633;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.call-link {
    text-decoration: none;
    color: #54623b;
}


.logolink a {
    text-decoration: none;
    
}

.logolink img {
    height: 60px;
    padding: 10px 20px;
    margin-top: 10px;

}
