@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}
/* 
// HEADINGS
Oswald == Big/main headings
Roboto == small headings
Playfair == alternate heading

// PARAGRAPHS
Poppins == Paragraphs
Quicksand == Qoutes
Montserat == alternate paragraph
*/
:root {
	--bg-colour: #000;
	--alt-bg-colour: #ffd700;
    --alt-txt-colour: #fff;
	--main-heading: "Oswald", sans-serif;
	--small-heading: "Roboto", sans-serif;
	--alt-heading: "Playfair Display", serif;
	--main-paragraph: "Poppins", system-ui;
	--short-paragraph: "Quicksand", system-ui;
	--alt-paragraph: "Montserrat", system-ui;
}
/* ************************************************************************************************************************ */
/********************************************************** INDEX PAGE ******************************************************/
/* ************************************************************************************************************************ */
body {
    width: 100%;
    height: auto;
    background-color: var(--bg-colour);
}
/* ************ */
/**** HEADER ****/
/* ************ */
header {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 5px 4%;
    border-bottom: 1px solid transparent;
    transition: all ease .50s;
    background-color: var(--alt-bg-colour);
}
header.sticky {
    padding: 5px 5%;
    background: var(--bg-colour);
    border-bottom: 1px solid var(--alt-txt-colour);
}
header.sticky a:hover{
    color: #ffd700;
}
.logo img {
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.navlist {
    display: flex;
    width: 50%;
    justify-content: space-around;
}
.navlist a {
    color: var(--alt-txt-colour);
    font-size: var(--p-font);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
    transition: all ease .40s;
}
.navlist a:hover {
    color: var(--bg-colour);
    border-top: 5px solid var(--alt-txt-colour);
    border-bottom: 5px solid var(--alt-txt-colour);
    transition: all ease 0.10s;
}
#burger-menu {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: none;
}
/* ************ */
/**** ALL THE SECTIONS ****/
/* ************ */
section {
    position: relative;
    top: 55px;
    padding: 20px;
    margin: 20px;
    background-color: var(--alt-bg-colour);
    border-radius: 8px;
}
/* ************ */
/**** HERO SECTION ****/
/* ************ */
.hero-content {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
}
.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--main-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--main-paragraph);
    letter-spacing: 1px;
}
.cta-button {
    font-size: 2rem;
    background-color: var(--bg-colour);
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--alt-txt-colour);
    text-decoration: none;
    letter-spacing: 2px;
}
a span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}  
a span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}
a:hover span {
	padding-right: 25px;
}
a:hover span:after {
	opacity: 1;
	right: 0;
}
/* ******************** */
/**** INDEX ABOUT ****/
/* ******************** */
.about-content {
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
}
.about-content h2 {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--small-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-content p {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--main-paragraph);
    letter-spacing: 1px;
    margin: 15px 0;
}
.about-content-vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.mission,
.vision {
    box-shadow: 1px 1px 1px 1px var(--bg-colour);
}
.mission h3,
.vision h3 {
    font-size: 2rem;
    font-family: var(--alt-heading);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mission p,
.vision p {
    font-size: 1.5rem;
    font-family: var(--short-paragraph);
    font-weight: 300;
    letter-spacing: 1px;
}
/* ******************** */
/**** INDEX SERVICES ****/
/* ******************** */
.featured-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.featured-services h2 {
    font-size: 3rem;
    font-family: var(--small-heading);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 30px;
}
.card {
    width: 30%;
    height: 250px;
    margin: auto;
    background: var(--alt-txt-colour);
    box-shadow: 1px 1px 30px var(--bg-colour);
    align-items: center;
    border-radius: 10%;
    justify-content: center;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.card h3 {
    font-size: 2rem;
    font-family: var(--alt-heading);
    font-weight: 900;
    letter-spacing: 2px;
}
.card p {
    font-size: 1.5rem;
    font-family: var(--alt-paragraph);
    font-weight: 100;
    text-align: center;
    letter-spacing: 1px;
}
.card ul li{
    font-size: 1rem;
    font-family: var(--short-paragraph);
    font-weight: 900;
    list-style: circle;
}
/* ******************** */
/**** INDEX CONTACT *****/
/* ******************** */
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.contact h2 {
    font-size: 3rem;
    font-family: var(--small-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact p {
    font-size: 2rem;
    font-family: var(--alt-paragraph);
    font-weight: 100;
    text-align: center;
    letter-spacing: 1px;
}
/* ******************** */
/****** SERVICES ********/
/* ******************** */
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.services h2 {
    font-size: 3rem;
    font-family: var(--small-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.service-card .bx {
    font-size: 2rem;
    color: var(--alt-bg-colour);
}
.service-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.service-card {
    flex: 1 1 calc(33% - 40px);
    background-color: #fff;
    padding: 20px;
    border: 2px solid #ffcc00;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-card h3 {
    font-size: 1.5rem;
    font-family: var(--alt-heading);
    font-weight: 900;
    letter-spacing: 2px;
}
.service-card p {
    font-size: 1.1rem;
    font-family: var(--alt-paragraph);
    font-weight: 100;
    letter-spacing: 1px;
}
table {
    width: 100%;
}
table td {
    font-family: var(--small-heading);
    font-size: 1rem;
    font-weight: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}
.services-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.services-cta h2 {
    font-size: 3rem;
    font-family: var(--small-heading);
    font-weight: 900;
}
.services-cta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
/* ******************** */
/****** CATALOGUE *******/
/* ******************** */
.catalogue {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.catalogue h2 {
    font-size: 3rem;
    font-family: var(--small-heading);
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
}
.product-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-grid img {
    width: 100%;
}
.product-grid .product {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    flex: 1 1 calc(30% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    letter-spacing: 1px;
}
/* ******************** */
/******* CONTACT ********/
/* ******************** */
.contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.contact-page h2 {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--small-heading);
}
.contact-page p {
    width: 60%;
    margin: auto;
    font-size: 2rem;
    font-family: var(--alt-paragraph);
    font-weight: 100;
    text-align: center;
}
form {
    width: 50%;
    margin: auto;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}
input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
textarea {
    resize: vertical;
}
button.cta-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}
.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #1ebc57;
}
/* ******************** */
/******** FOOTER ********/
/* ******************** */
footer {
    position: relative;
    top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--bg-colour);
    color: var(--alt-bg-colour);
    padding-bottom: 10px;
}
footer p {
    font-size: 1rem;
    font-family: var(--small-heading);
    font-weight: 100;
    letter-spacing: 1px;
}
footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
footer ul li a{
    color: var(--alt-bg-colour);
    font-size: 2.5rem;
    font-family: var(--alt-paragraph);
    font-weight: 100;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */

/* For Tablets and Small Laptops */
@media only screen and (max-width: 1024px) {
    header nav ul li a {
        font-size: 1.5rem;  /* Resize navigation font */
    }

    .hero-content h1 {
        font-size: 3rem;  /* Resize hero section title */
    }

    .hero-content p {
        font-size: 1.2rem; /* Resize hero section paragraph */
    }

    .cta-button {
        font-size: 1.5rem;  /* Resize call-to-action button */
    }

    .service-cards {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .card {
        /* width: 80%; */
        height: auto;
    }
}

/* For Mobile Devices */
@media only screen and (max-width: 768px) {
    header {
        flex-direction: row;
    }
    #burger-menu {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navlist {
        width: 100%;
        height: 70vh;
        position: absolute;
        left: 0;
        top: 2000px;
        display: flex;
        flex-direction: column;
        /* height: 450px; */
        background: var(--bg-colour);
        padding: 20px 0;
        text-align: center;
        transition: all .50s ease;
    }
    .navlist a {
        display: flex;
        flex-direction: column;
        font-size: 1.5rem;
    }
    .navlist.open {
        top: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;  /* Further reduce hero title */
    }

    .hero-content p {
        font-size: 1rem;  /* Further reduce hero paragraph */
    }

    .cta-button {
        font-size: 1.2rem;  /* Further reduce call-to-action button */
    }
    
    .about-content-vm {
        grid-template-columns: 1fr;
    }

    .featured-services h2, 
    .catalogue h2, 
    .contact h2, 
    .services-hero-content h2,
    .services h2,
    .services-cta h2,
    .about-content h2 {
        font-size: 2rem;  /* Resize section titles */
    }
    
    .contact-form h3 {
        font-size: 1rem;
    }

    .slideshow-container {
        height: 300px;  /* Reduce slideshow height for mobile */
    }

    .card {
        width: 35%;
        height: auto;
    }

    .card h3,
    .card p,
    .mission h3,
    .vision h3,
    .mission p,
    .vision p,
    .about-content p {
        font-size: 1rem;
    }

    .contact-page p {
        font-size: 1.5rem;
        font-weight: 100;
    }
    .services-hero-content p {
        font-size: 15px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    footer p {
        font-size: 0.8rem;  /* Reduce footer text */
    }

    footer ul li a {
        font-size: 2rem;  /* Resize social media icons */
    }
}

/* For Small Mobile Devices */
@media only screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;  /* Resize hero title for very small screens */
    }

    .hero-content p {
        font-size: 0.9rem;  /* Resize hero paragraph */
    }

    .cta-button {
        font-size: 1rem;  /* Resize call-to-action button */
    }

    .slideshow-container {
        height: 250px;  /* Further reduce slideshow height */
    }

    .card {
        width: 100%;
        height: auto;
    }

    .service-cards {
        gap: 15px;  /* Reduce spacing between service cards */
    }
}
