@import url('https://fonts.googleapis.com/css2?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=Quintessential&family=Space+Grotesk:wght@300..700&display=swap');

:root{
  --height: 12vh;
  --width: 185px;
  --quantity: 23;
  --signature-orange: #ff7200;
  --light-orange: #ffad6a;
  --warm-white: #fff7c4;
  --orange-brown: #72370f;
  --style-font: "Quintessential", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* -------------------------------------------------------Header----------------------------------------------------------------- */

.heading1{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3rem;
    padding: 15px;
    color: var(--signature-orange);
}

.heading3by2{
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 2.2rem;
    padding: 15px;
    color: var(--orange-brown);
    width: 100%;
}

.heading2{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 22px;
    padding: 2px;
    color: var(--signature-orange);
}

.heading3{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    padding: 2px;
    color: var(--orange-brown);
}

body,html{
    background: whitesmoke;
}



/* header and navigation */
header {
    height: 17vh;
    width: 70vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    z-index: 3;
}

header div {
    height: 100%;
}

#container1 {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 0;
    gap: 3vw;
}

#container1 a{
    display: flex;
    flex-shrink: 0;
    height: 35px;
    width: 35px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    color: #feeffe;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 35px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
}

#container1 a:active{
    color: #feefee;
}

#container2 {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: flex-baseline;
}

#container2 img{
    height: 130px;
    cursor: pointer;
}

#container3 {
    width: 10vw;
    height: 10vh;
    position: fixed;
    z-index: 7;
    top: 0;
    left: 89vw;
    padding: 15px;
}

#hamburger {
    height: 30px;
    width: 100%;
    position: relative;
    z-index: 7;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.lines {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    flex-shrink: 0;
}

.cross {
    height: 100%;
    display: none;
}

.lines .line1 {
    height: 3px;
    width: 40px;
    background: black;
}

.lines .line2 {
    height: 3px;
    width: 30px;
    background: black;
}

.lines .line3 {
    height: 3px;
    width: 20px;
    background: black;
}

.cross .cross1 {
    height: 3px;
    width: 40px;
    background: rgb(67, 67, 67);
    transform: rotate(45deg) translateY(19px) translateX(5px);
}

.cross .cross2 {
    height: 3px;
    width: 40px;
    background: rgb(67, 67, 67);
    transform: rotate(-45deg) translateY(4px) translateX(-16px);
}


#navigationLinks {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

#navigationLinks::after{
    content: "";
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fffb;
    backdrop-filter: blur(20px);
    z-index: -1;
}

.linkContainer ul {
    height: 100%;
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.linkContainer ul li {
    list-style: none;
    padding: 5px 14px;
    font-size: 20px;
}

.linkContainer ul li .social {
    display: inline-block; /* Allows icons to sit side-by-side */
    margin-right: 15px;    /* Adds spacing between icons */
    margin-top: 20px;      /* Separates icons from the text links above */
}

.linkContainer ul li .social i {
    font-size: 1.5rem;     /* Makes the icons a good size */
    color: var(--orange-brown);
}

.linkContainer ul li a {
    text-decoration: none;
    font-size: 2rem;
    font-family: var(--style-font);
    color: var(--orange-brown);
    font-weight: bold;
}

.canvas {
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas img {
    height: 100px;
}

#canvas {
    border: 1px solid black;
}

/* -----------------------------------------------------Brochure---------------------------------------------------------------- */

.brochure_cont{
    height: 90px;
    padding: 5px;
    border-radius: 45px;
    position: fixed;
    z-index: 5;
    top: calc(95vh - 90px);
    left: calc(100vw - 400px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(240, 239, 239);
}

.brochure_cont .arrow{
    height: 90px;
    width: 45px;
    border-radius: 45px 0 0 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.brochure_elements_cont{
    height: 100%;
    width: 310px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.brochure_elements img{
    width: 60px;
}




/* -------------------------------------------------------Footer----------------------------------------------------------------- */

/* --- Professional Footer --- */
footer {
    width: 100%;
    /* Keeping your light gray background style but making it slightly cleaner */
    background: #f4f4f4; 
    border-top: 3px solid var(--orange-brown);
    padding-top: 50px;
    font-family: var(--style-font); /* Using your specific font variable */
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 3 columns on desktop and stacks on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footerContent {
    /* Removed height: 50vh to prevent awkward stretching */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Professional left-alignment */
    margin-bottom: 30px;
}

/* 1. Logo Section */
#footerLogo {
    height: 100px; /* Kept exactly as your original */
    margin-bottom: 15px;
    object-fit: contain;
}

.footerContent p {
    padding: 0; 
    font-weight: 500;
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

/* 2. Links Section */
.footerContent .heading2 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--orange-brown);
    padding-bottom: 5px;
}

.footerContent ul {
    list-style: none;
    padding: 0;
}

.footerContent ul li {
    padding: 8px 0; /* Cleaner vertical spacing */
}

.footerContent a {
    text-decoration: none;
    font-size: 17px; /* Professional standard */
    color: var(--orange-brown);
    font-weight: 500;
    transition: 0.3s opacity;
}

.footerContent a:hover {
    opacity: 0.7;
}

.footerContent ul li i {
    color: var(--orange-brown);
    margin-right: 10px;
    font-size: 14px;
}

/* 3. Form Section */
.footerContent .form {
    width: 100%;
}

.footerContent form {
    width: 100%; /* Wider for better usability */
    max-width: 300px;
}

.footerContent form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

#footerMailId, 
#footerText {
    width: 100%;
    border: 1px solid var(--orange-brown);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    font-family: inherit;
}

#footerSubmit {
    height: 40px;
    width: 100%; /* Full width button looks better in a column */
    background-color: var(--orange-brown);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

#footerSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 4. Copyright Section */
.copyright {
    margin-top: 40px;
    padding: 20px 10px;
    background: #e9e9e9; /* Slightly darker to separate from footer */
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.copyright strong {
    color: var(--orange-brown);
}