/* Google Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong,
b {
    font-weight: bold;
}

em,
i {
    font-style: italic;
}

a img {
    border: none;
}

/* END RESET*/

/* Global Styles */

:root {
    --dark-background: #3B4425;
    --light-background: #FAF9F6;
    --light-background-gold: #f5e5b6;
    --light-background-grey: #C0C0C0;
    --gold-main: #D4AF37;
    --gold-soft: #F7D46B;
    --gold-muted: #9A7B2F;
    --font-color-primary: #2B2B2B;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-special: 'Cinzel', serif;
}

body {
    background-color: var(--light-background-grey);
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 16px;
}

h2 {
    font-size: 2rem;
    font-family: var(--font-secondary);
    color: var(--dark-background);
}

.section-heading {
    font-size: 2rem;
}

/* Container Styles */

.container {
    width: 100%;
}

/* Header Styles */

.header {
    width: 100%;
    padding: 4vw 2vw;
    background-color: var(--dark-background);
    color: var(--gold-soft);
    font-family: var(--font-special);
}

.header .logo {
    font-size: 4vw;
}

.header .menu-links {
    display: none;
}

.header .header-nav li {
    display: block;
    width: 100%;
    list-style: none;
    padding: 2vw 3vw;
    border-bottom: 1px solid var(--gold-soft);
    text-align: center;
    font-size: 3vw;
}

.header .mobile-menu-toggle {
    position: absolute;
    right: 3vw;
    top: 4vw;
}

.header .mobile-menu-toggle a {
    font-size: 3vw;
    cursor: pointer;
    color: var(--gold-soft);
}

/* Content Area */
.content-wrapper {
    background-color: var(--light-background);
}

.homepage-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

.hero-text {
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
    width: 100%;
    background: rgba(var(--light-background), 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-secondary);
    font-size: 9vw;
    color: var(--gold-soft);
    text-align: center;
    margin-bottom: 8vw;
}

.hero-text .btn-primary a {
    text-decoration: none;
    color: var(--dark-background);
    font-size: 4vw;
}

.emphasized-text {
    font-weight: 500;
    font-style: italic;
}

.hero-image {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/Urjaas_home_hero_16x9.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-image::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--dark-background);
    opacity: 0.3;
}

/* Home page features- benefits section */

.product-features {
    padding: 8vw 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12vw;
    background-color: var(--gold-main);
}

.product-features div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8vw;
}

.product-features i {
    color: var(--font-color-primary);
    font-size: 16vw;
    margin-bottom: 2vw;
}

.product-features .feature-text {
    font-family: var(--font-secondary);
    color: var(--font-color-primary);
    font-size: 6vw;
    line-height: 1.2;
    text-align: center;
}

/* Collections Section */

.collections {
    padding: 4vw 0;
    background-color: rgba(var--light-background);
    text-align: center;
}

.collections-grid {
    padding: 4vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8vw;
}

.collection-image {
    width: 320px;
    height: 320px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.collection-description {
    font-family: var(--font-secondary);
    color: var(--dark-background);
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

/* Testimonials Section */

.testimonials {
    padding: 4vw 1vw;
    text-align: center;
    background-color: var(--light-background-gold);
}

.testimonials .section-heading {
    text-align: center;
}

.testimonials-row {
    padding: 4vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
}

.testimonials-row .testimonial-text {
    padding: 0 1vw;
    font-family: var(--font-primary);
    font-size: 1.25rem;
}

.testimonial-text blockquote p {
    margin-bottom: 1rem;
}

.testimonials-row .testimonial-image1,
.testimonials-row .testimonial-image2 {
    width: 320px;
    height: 320px;
}

.testimonials-row .testimonial-image2 {
    display: none;
    background-image: url("../assets/images/Daily_Diva_collection1.jpeg");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-top: 4vw;
}

.testimonials-row .testimonial-image1 {
    background-image: url("../assets/images/women_wear_1.png");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-top: 4vw;
}


/* Lead Capture section */

.lead-capture {
    padding: 8vw 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8vw;
    background-color: var(--gold-main);
}

.lead-capture .lead-gen-text {
    font-family: var(--font-secondary);
    color: var(--dark-background);
    font-size: 6vw;
    text-align: center;
    line-height: 1.2;
}

.lead-capture .lead-gen-cta a {
    text-decoration: none;
    font-family: var(--font-primary);
    color: var(--gold-soft);
}


/* Footer Section */

.footer {
    background-color: var(--dark-background);
    color: var(--gold-soft);
    padding: 2vw 1vw;
    font-family: var(--font-primary);
    font-size: 1.6vw;
}

.footer .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.footer a {
    color: var(--gold-soft);
    text-decoration: none;
    margin: 0 0.5vw;
}

/* Tools - Buttons, Links etc. */

.btn-primary {
    background-color: var(--gold-main);
    color: var(--dark-background);
    padding: 4vw 8vw;
    border: none;
    border-radius: 8px;
    font-size: 4vw;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: var(--font-primary);
}

.btn-secondary {
    background-color: var(--dark-background);
    color: var(--gold-soft);
    padding: 4vw 8vw;
    border: 2px solid var(--gold-main);
    border-radius: 8px;
    font-size: 4vw;
    cursor: pointer;
}







/* Large screen styles */

@media screen and (min-width: 768px) {

    .container {
        width: 90%;
        max-width: 1440px;
        position: relative;
    }

    /* Header Styles*/

    .header {
        padding: 1vw 2vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .logo {
        font-size: 3vw;
    }

    .header .header-nav {
        z-index: 20;
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2vw;
    }

    .header .header-nav li {
        padding: 0;
        border: none;
        font-size: 1vw;
    }

    .header .mobile-menu-toggle {
        display: none;
    }

    /* Content Area */

    .homepage-hero {
        flex-direction: row;
        height: 90vh;
    }

    .hero-text {
        position: static;
        transform: none;
        background: rgba(var(--light-background), 1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-left: 4vw;
    }

    .hero-text h1 {
        font-size: 4vw;
        color: var(--gold-muted);
        text-align: left;
        margin-bottom: 3vw;
    }

    .hero-text .btn-primary a {
        font-size: 1.6vw;
    }

    .hero-image::before {
        content: none;
    }

    /* Home page features- benefits section */

    .product-features {
        padding: 2.4vw 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        gap: 4vw;
    }

    .product-features div {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        gap: 1vw;
    }

    .product-features i {
        color: var(--font-color-primary);
        font-size: 4vw;
        margin-bottom: 0;
    }

    .product-features .feature-text {
        font-family: var(--font-secondary);
        color: var(--font-color-primary);
        font-size: 1.6vw;
        text-align: center;
        line-height: 1.2;
    }

    /* Collections Section */

    .collections {
        padding: 2rem 4rem;
        background-color: rgba(var--light-background);
        text-align: center;
    }



    .collections-grid {
        padding: 2rem 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .collection-image {
        width: 520px;
        height: 520px;
        border-radius: 12px;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 2vw;
    }

    .testimonials-row {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        padding: 0 2vw 1vw;
    }

    .testimonials-row .testimonial-text {
        padding-left: 3vw;
        flex: 2.5 1 0;
        font-style: italic;
        font-size: 1.25rem;
        text-align: left;
    }

    .testimonials-row .testimonial-image1,
    .testimonials-row .testimonial-image2 {
        flex: 1.25 1 0;
        width: 180px;
        height: 320px;
    }

    .testimonials-row .testimonial-image2 {
        display: block;
    }

    /* Lead Capture section */

    .lead-capture {
        padding: 3vw 2vw;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        gap: 4vw;
    }

    .lead-capture .lead-gen-text {
        flex: 3 1 0;
        padding-left: 2vw;
        font-size: 2vw;
        line-height: 1.2;
        text-align: right;
    }

    .lead-capture .lead-gen-cta a {
        font-size: 2vw;
        text-align: left
    }

    /* Footer Section */

    .footer {
        font-size: 0.8vw;
    }

    .footer .container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Tools - Buttons, Links etc. */

    .btn-primary {
        padding: 0.8vw 1.2vw;
        font-size: 1.6vw;
    }

    .btn-secondary {
        padding: 2vw 4vw;
        border-radius: 8px;
        font-size: 2vw;
    }

}