*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo {
     width: 170px;
     padding: 10px 20px; 
    }
body {
    font-family: Arial, Helvetica, sans-serif;
}

.intro {
    position: relative; /* for absolute positioning of .enquire */
    min-height: 100vh; 
    margin-top: 8%;
    font-style: inherit;
    color: rgb(82, 87, 189);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.heading1, .adventurehead {
    text-align: center;
    text-decoration: underline;
    margin: 50px 0px 60px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.lasthead{
    text-align: center;
    margin: 50px 0px 60px;
    color: blue; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 5%;
    text-decoration: underline;
}


/* Cards Section */
.item1, .card {
    border: solid 2px #ccc;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.paragraph, .card-text {
    text-align: justify;
    text-justify: inter-word;
    margin: 0 10px;
}

.red { 
    color: red; 
    margin-bottom: 10px;
    text-align: center;
    transition: background-color 0.3s ease; 
}

.morepack {
    text-decoration: none;
    border: solid 1px;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: rgb(255, 110, 13);
    color: white;
    
}
.morepack:hover {
    background-color: #fda73d;

}
.btn-primary:hover {
    background-color: #28a745 !important;
    color: white !important;
    transition: background-color 0.3s ease;
}
.btn-success:hover{
    background-color: #28a745 !important;
    border: solid 1px;
    border-color: #fda73d;
}

.intro-divider {
    border: none;
    height: 1px;
    background-color: black;
    width: 100%;
    margin: 40px auto;
}
.enquire {
    position: absolute;          /* absolute positioning relative to container */
    bottom: 40%;                  
    left: 50%;                   
    transform: translateX(-50%); /* center the button */
    margin-top: 0;               /* remove any extra margin */
    transition: all 0.3s ease;   /* smooth transition if container resizes */
}
ul,li{
    list-style-type:none;
}
.card h5, #box-heading {
    text-align: center;
    margin-bottom: 10px;
}



/* Media Queries */

@media(max-width: 991px){
    .intro h1 { font-size: 2rem; }
    .intro{
        margin-top: 10%;
    }
}

@media(max-width: 768px){
    .intro h1 { font-size: 1.7rem; }
    .logo { width: 150px; }
    .intro{
        margin-top: 14%;
    }
}

@media(max-width: 576px){
    .intro h1 { font-size: 1.5rem; }
    .card-text, .paragraph { font-size: 15px; }
    .intro{
        margin-top: 25%;
    }
}
