:root {

/* ========== COLORS ========== */

/* Main Background */
--color-background: #F5F1EB;

/* Secondary Warm Background */
--color-surface: #ECE6DE;

/* Dark Luxury Section */
--color-dark: #1D1A17;

/* Primary Text */
--color-text: #2B2622;

/* Soft Paragraph Text */
--color-text-light: #6F665D;

/* Premium Beige Accent */
--color-accent: #B79B7A;

/* Border Color */
--color-border: #D8CEC3;

/* Button Hover */
--color-hover: #9E8263;

/* White */
--color-white: #FFFFFF;


/* ========== TYPOGRAPHY ========== */

/* Luxury Serif Heading */
--font-heading: "Cormorant Garamond", serif;

/* Clean Sans Font */
--font-body: "Inter", sans-serif;

/* Optional Premium Alternative */
--font-alt: "Manrope", sans-serif;


/* ========== FONT SIZES ========== */

--fs-hero: clamp(3rem, 6vw, 6rem);

--fs-h1: clamp(2.5rem, 5vw, 4.5rem);

--fs-h2: 3rem;

--fs-h3: 2rem;

--fs-body: 1rem;

--fs-small: 0.9rem;

--fs-xs: 0.75rem;


/* ========== SPACING ========== */

--section-padding: 120px;

--container-width: 1400px;

--border-radius: 4px;


/* ========== TRANSITIONS ========== */

--transition: all 0.35s ease;

}


.project_Heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.project_Heading h2{
    font-size: var(--fs-h1);
    font-family: var(--font-heading);
}
.project_Heading p{
    font-size: 20px;
    width: 30%;
    margin: 0px auto;
    text-align: justify;
}
.projects{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.projects_container{
    padding-top: 50px;

}
.main{
    padding: 0px 20px;
}
.video_showcase{
    margin-top: 50px;
    width: 100%;
    height: 90vh;
}
.video_showcase video, img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.fotter{
    width: 100%;
    margin-top: 60px;
    position: relative;
 

}
.fotter img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.content_footer{
    position: absolute;
    bottom: 2%;
    left: 2%;
}
.content_footer h2, p{
    text-transform: uppercase;
}
.content_footer h2{
    font-size: var(--fs-h2);
    width: 50%;
}
.content_footer p{
    font-size: var(--fs-body);
    padding-bottom: 10px;
    line-height: 34px;
    width: 50%;

}
.contact_btn{
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid var(--color-dark);
    font-size: var(--fs-body);
    cursor: pointer;
}