@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Gabarito&family=Inclusive+Sans&family=Montserrat&family=Poppins&family=Roboto&family=Space+Grotesk&family=Ubuntu&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all 0.5s linear;
    font-family: 'Gabarito', sans-serif;
    font-family: 'Ubuntu', sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
    cursor: pointer !important;
}

body {
    font-size: 100%;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

.main {
    height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgb(4 3 3 / 60%), rgb(0 0 0 / 33%)), url(pic.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 5%;
}

.navbar li {
    display: inline;
    padding: 0 15px;
}

.navbar li a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 1.4375rem;
    padding: 4px;
}

.navbar li a:hover {
    color: #C19A6B;
}

.burger {
    display: none;
    position: absolute;
    top: 15px;
    right: 5%;
    cursor: pointer;
    font-size: 2rem;
    color: antiquewhite;
}

/* Button */
.btn {
    padding: 12px 39px;
    background-color: chocolate;
    color: white;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
}

.btn:hover {
    background-color: #9c8c7a;
    color: black;
}

/* Main Heading */
.main-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
    width: 40%;
    margin: auto;
    height: 60vh;
}

.para {
    color: #9c8c7a;
    letter-spacing: 2px;
}

.heading {
    color: #ff6b00;
    font-size: 4.6875rem; /* Responsive size equivalent to 75px */
    font-family: 'Courgette', cursive;
}

.mid-para {
    font-size: 0.6875rem;
    color: #9c8c7a;
    padding: 2% 0;
}

.btn1 {
    border-radius: 20px;
    letter-spacing: 1px;
    margin-top: 2%;
}

/* Buy Now Form Section */
.buy-now-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.buy-now-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 5px;
    display: block;
    font-size: 1rem; /* 16px */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem; /* 16px */
}

.form-group select {
    background-color: #f5f5f5;
}

button[type="submit"] {
    background-color: #563d2d;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem; /* 16px */
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #4b3525;
}

/* Contact Section */
.contact {
    background: url(pic2.jpg) no-repeat center center/cover;
    width: 100%;
    height: 50vh;
    padding: 0;
    margin-top: 10%;
    position: relative;
}

.Con-box {
    background-color: #3d1f0a;
    position: absolute;
    width: 50%;
    margin: auto;
    height: 300px;
    top: -25%;
    left: 25%;
    padding: 35px 0;
}

.Con-box .heading {
    color: white;
    margin-left: 200px !important;
}

.Con-box .para {
    margin-left: 280px !important;
}

.Con-box .icons {
    color: #9c8c7a;
    margin: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons div {
    padding: 0 13px;
    overflow: hidden;
    cursor: pointer;
}

.icons i {
    display: block;
    padding: 12px 0;
    font-size: 1.625rem; /* 26px */
    margin-left: 70px !important;
}

.icons div:hover {
    color: white;
}

/* Media Queries for Responsiveness */

/* Medium Devices (Tablets) */
@media (max-width: 768px) {
    .navbar li a {
        font-size: 1.2rem; /* Adjusted font size */
    }

    .main-heading {
        width: 60%;
    }

    .heading {
        font-size: 3.75rem; /* Scaled down heading */
    }

    .form-container {
        max-width: 90%;
    }

    .Con-box {
        width: 70%;
        left: 15%;
    }
}

/* Small Devices (Mobiles) */
@media (max-width: 500px) {
    .navbar li a {
        font-size: 1rem;
    }

    .main-heading {
        width: 80%;
    }

    .heading {
        font-size: 3rem; /* Further scaling down */
    }

    .mid-para {
        font-size: 0.625rem;
    }

    .btn {
        padding: 8px 24px;
        font-size: 1rem;
    }

    .form-container {
        padding: 20px;
    }

    .contact {
        height: auto;
    }

    .Con-box {
        width: 88%;
        left: 6%;
    }
}
