@font-face {
    font-family: "Erotique";
    src: url("../fonts/ErotiqueTrial-Regular.ttf");
}

@font-face {
    font-family: "Agraham";
    src: url("../fonts/Agraham.otf");
}

:root {
    --primary-color: ;
    --background-color: #FFFAF4;
    --font-family: "Gayathri", sans-serif;
    --font-weight-regular: 400;
    --font-weight-bold: 600;
    --font-weight-boldness: 800;
    --text-transform: uppercase;
    --primary-color: #C7BBAB;
    --white-color: #fff;
    --secondry-color: #99a98c;
    --dark-color: #1E1E1E;
}

body {
    background-color: var(--background-color);
    font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #000000;
}

i {
    font-size: 18px;
    color: var(--white-color);
}

/* Font Family */
.gayathri-thin {
    font-family: "Gayathri", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.gayathri-regular {
    font-family: "Gayathri", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.gayathri-bold {
    font-family: "Gayathri", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.cormorant-garamond {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.hurricane-regular {
    font-family: "Hurricane", cursive;
    font-weight: 400;
    font-style: normal;
}

.lusitana-regular {
    font-family: "Lusitana", serif;
    font-weight: 400;
    font-style: normal;
}

.lusitana-bold {
    font-family: "Lusitana", serif;
    font-weight: 700;
    font-style: normal;
}

.object-fit-cover {
    object-fit: cover;
}

/* Header CSS */
nav.navbar {
    background-color: var(--background-color);
}

nav.navbar .nav-item {
    padding: 0 40px;
}

nav.navbar .nav-item .nav-link {
    font-family: Gayathri, serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    color: #000;
}

nav .navbar-brand img {
    max-width: 180px;
}

.navbar-toggler {
    outline: none;
    border: none;
    font-size: 32px;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(30, 30, 30, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Update the existing hero section CSS */
.hero-section .bg-rotating-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: flex;
    animation: scroll 45s linear infinite;
}

.hero-section .bg-rotating-image-container {
    min-width: 25%;
    max-width: 30%;
    width: 30%;
    flex-shrink: 0;
}

.hero-section .bg-rotating-image-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section h1 {
    font-family: Erotique, sans-serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 90px;
}

.banner-text-section {
    background: #1E1E1E;
}

.banner-text {
    font-family: Lusitana, serif;
    font-weight: 400;
    font-size: 24px;

}

/* Add the animation keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-180%);
    }
}

/* Services Section */
#services {
    position: relative;
    padding: 100px 0;
}

#services h2 {
    font-family: "Agraham", sans-serif;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 2px;
}

#services .card-img-top {
    height: auto;
    border-radius: 0;
}

#services .card-body {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(0deg, #000, transparent);
}

#services .card-body h5 {
    font-family: Gayathri, serif;
    font-weight: 500;
    font-size: 3.5rem;
    color: #E2C7AF;
}

.portfolio-section {
    background: #F3F2ED;
    padding: 100px 0;
}

.portfolio-section p {
    font-family: Cormorant Garamond, serif;
    font-weight: 400;
    font-size: 96px;
    line-height: 1;
    text-transform: uppercase;
}

.portfolio-section p > span {
    font-family: Hurricane, serif;
    font-weight: 400;
    font-size: 96px;
    text-transform: lowercase;
}

.portfolio-section .btn-outline-light {
    background: #000000;
    border-color: #000;
    color: #fff;
    padding: 10px 40px;
    font-family: Cormorant Garamond, serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.5;
    text-transform: capitalize;
}

/* Testimonials */
#testimonial {
    padding: 150px 0;
    background-color: var(--background-color);
    text-align: center;
}

.testimonial-slide {
    padding: 0 0%;
    outline: none;
}

.testimonial-title {
    font-family: Agraham, serif;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-quote {
    font-family: Gayathri, serif;
    font-weight: 400;
    font-size: 28px;
    text-align: center;
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.testimonial-author {
    font-family: Agraham, serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;

}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #999;
}

.slick-dots li.slick-active button:before {
    color: #333;
}

/* Brands */
.brand-showcase {
    padding: 0 0 80px;
    text-align: center;
}

.section-title {
    font-family: Agraham, serif;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 60px;
}

.brand-showcase .section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #333;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    align-content: space-between;
    justify-content: space-around;
}

.brand-item {
    align-self: center;
    justify-self: center;
    max-width: 200px;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.brand-item img {
    /*filter: blur(10px);*/
}

.brand-item img:hover {
    filter: blur(0);
}

.brand-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-showcase {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .brand-grid {
        /*grid-template-columns: 1fr;*/
    }

    .section-title {
        font-size: 1.3rem;
    }
}


/* Our Space */
.studio-section {
    padding: 0 0;
    background-color: #f9f9f9;
}

.studio-section img {
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    max-height: 1000px;
}

.studio-content-box {
    background: #C7BBAB;
    padding: 100px 0;
}

.studio-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.studio-description {
    font-family: Lusitana, serif;
    font-weight: 400;
    font-size: 24px;
    text-align: center;

}

@media (max-width: 768px) {
    .studio-section {
        padding: 70px 0;
    }

    .studio-title {
        font-size: 1.8rem;
    }

    .studio-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Contact Us */
.contact-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

.contact-title {
    font-family: Agraham, serif;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-info p {
    font-family: Gayathri, serif;
    font-weight: 100;
    font-size: 24px;
    margin-bottom: 6px;
}

.divider {
    border-left: 1px solid #000;
    height: 150px;
    margin: auto 30px;
}

.contact-icon span {
    font-family: Gayathri, serif;
    font-weight: 100;
    font-size: 24px;
    margin-right: 10px;
    line-height: 1;
    margin-top: 7px;
}

.contact-icon i {
    color: #9d9d9d;
    font-size: 24px;
    margin-right: 10px;
}

/* Follow Us */
#follow-us {
    background: #F3F2ED;
}

#follow-us h2 {
    font-family: Agraham, serif;
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 30px !important;
}

#follow-us p {
    font-family: Gayathri;
    font-weight: 100;
    font-size: 24px;
    margin-bottom: 30px;
}

/* Instagram Post Styling */
.instagram-post {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    /*border-radius: 3px;*/
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

.instagram-header {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #efefef;
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-family: 'Gayathri', sans-serif;
    font-weight: 600;
    font-size: 14px;
    flex-grow: 1;
}

.options i {
    color: #262626;
    font-size: 16px;
}

.instagram-image {
    width: 100%;
    position: relative;
    padding-bottom: 100%; /* Makes it square */
    overflow: hidden;
    height: 90%;
}

.instagram-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-actions {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.action-icons i {
    color: #262626;
    font-size: 22px;
    margin-right: 15px;
}

.bookmark i {
    color: #262626;
    font-size: 22px;
}

.instagram-likes {
    font-family: 'Gayathri', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 0 10px 5px;
}

.instagram-caption {
    font-family: 'Gayathri', sans-serif;
    font-size: 14px;
    padding: 0 10px 15px;
    line-height: 1.4;
    text-align: left;
}

.instagram-caption .username {
    font-weight: 600;
    margin-right: 5px;
}

.instagram-caption .caption-text {
    font-weight: 400;
}


/* Footer */
footer {
    background-color: #D6C7B2;
    padding: 100px 0 50px;
}

.bx-1 {
    border-right: 1px solid #000;
    border-left: 1px solid #000;
}

.footer-section ul.pl-25 {
    padding-left: 20%;
}

.footer-section ul li {
    font-family: Gayathri, serif;
    font-weight: 100;
    font-size: 24px;
    text-align: center;
}

.footer-section ul li i {
    color: #000;
    font-size: 24px;
    margin-right: 10px;
}

footer hr {
    border: 0;
}

footer .text-center.small {
    font-family: Gayathri, serif;
    font-weight: 400;
    font-size: 20px;
}
