@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');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: all 0.5s linear;
    font-family: 'Ubuntu', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    cursor: pointer !important;
}

p {
    cursor: pointer !important;
}

body {
    font-size: 100%;
    line-height: 1.6;
}

.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; /* 23px */
    padding: 4px;
}

.navbar li a:hover {
    color: #C19A6B;
}

/* Burger menu for mobile */
.burger {
    display: none;
    position: absolute;
    top: 15px;
    right: 5%;
    cursor: pointer;
    font-size: 2rem; /* 33px */
    color: antiquewhite;
}

/* Button */
.btn {
    padding: 12px 39px;
    background-color: chocolate;
    color: white;
    border: none;
    font-size: 1.125rem; /* 18px */
    cursor: pointer;
}

.btn:hover {
    background-color: #9c8c7a;
    color: black;
}

.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; /* 75px */
    font-family: 'Courgette', cursive;
}

.mid-para {
    font-size: 0.75rem; /* 11px */
    color: #9c8c7a;
    padding: 2% 0;
}

.btn1 {
    border-radius: 20px;
    letter-spacing: 1px;
    margin-top: 2%;
}

/* Section */
.sec {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 3% 0;
}

.row {
    display: flex;
    justify-content: center;
    margin: 2% 0;
}

.img {
    width: 40%;
}

.row img {
    width: 80%;
}

.boxes {
    width: 35%;
    align-self: center;
    text-align: left;
}

.boxes h1 {
    color: rgb(57, 36, 36);
    font-size: 1.875rem; /* 30px */
}

.sec .heading {
    color: rgb(92, 44, 10);
    font-size: 3.125rem; /* 50px */
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

video {
    width: 100%;
    height: auto;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive video for small screens */
@media (max-width: 600px) {
    .video-container {
        padding: 10px;
    }

    video {
        border-radius: 5px;
    }
}

/* Contact */
.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;
}

.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 */
}

.icons div:hover {
    color: white;
}

/* About Section */
.about-section {
    padding: 40px;
    background-color: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    height: auto;
}

.about-image img:hover {
    border-radius: 13px;
}

.about-text {
    max-width: 500px;
    margin: 0 20px;
}

.about-text h2 {
    font-size: 2rem;
    color: #7b3f00;
}

.about-text p {
    font-size: 0.875rem; /* 14px */
    color: #333;
    line-height: 1.6;
}

/* Responsive Reverse Row */
.reverse {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar li a {
        font-size: 1.2rem;
    }

    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .reverse {
        flex-direction: column;
    }

    .about-text {
        margin: 20px 0;
        max-width: 100%;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .overlay h1 {
        font-size: 2.5rem;
    }

    .overlay p {
        font-size: 1.2rem;
    }
}

/* Smaller Screens */
@media (max-width: 820px) {
    .burger {
        display: block;
    }

    .navbar {
        position: absolute;
        height: 80vh;
        width: 200px;
        top: 0;
        flex-direction: column;
        right: 0;
        text-align: left;
        justify-content: center;
        transition: all 1s ease-in-out;
        background-color: black;
    }

    .navbar li a {
        padding: 18% 0;
        display: block;
    }

    .navbar .btn {
        padding: 15px 24px;
    }

    .main-heading {
        height: 80vh;
        width: 60%;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .boxes, .img {
        width: 80%;
        padding-bottom: 2%;
    }

    .comments {
        width: 50%;
        margin: 4% auto;
    }

    .about-box {
        top: 30%;
        width: 72%;
        left: 14%;
    }

    .Con-box {
        width: 70%;
        left: 15%;
    }

    .contact {
        height: 50vh;
    }
}

/* Very Small Screens */
@media (max-width: 500px) {
    .main-heading {
        width: 80%;
    }

    .heading {
        font-size: 3.75rem; /* 60px */
    }

    .comments {
        width: 80%;
        margin: 10% auto;
    }

    .mid-para {
        font-size: 0.625rem; /* 10px */
    }

    .about-box {
        width: 87%;
        left: 7%;
    }

    .Con-box {
        width: 88%;
        left: 6%;
        bottom: 20px;
    }
}
