
@font-face{
    font-family:"helvetica";
    src:url("https://candyfonts.com/wp-data/2018/10/26/11538/HELR45W.ttf") format("woff"),
    url("https://candyfonts.com/wp-data/2018/10/26/11538/HELR45W.ttf") format("opentype"),
    url("https://candyfonts.com/wp-data/2018/10/26/11538/HELR45W.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ar-primary-color: #73b8ac;
    --ar-secondary-color: #d5983d;
    --ar-light-color: #ffffff;
    --ar-dark-color: #000000;
    --ar-secondary-background-color: #f3f3f3;
}

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

/* General styling for body */
body {
    background-color: var(--ar-light-color);
    color: var(--ar-dark-color);
    font-family: "helvetica", Arial, sans-serif !important;
}

.main-content {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
}

/* Navbar styling */
.navbar {
    padding: 1rem;
    background-color: var(--ar-dark-color); /* Black background */
}

.navbar-brand,
.navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link:hover {
    color: var(--ar-secondary-color); /* Turquoise hover effect */
}

/* Carousel container styling */
.carousel-container {
    position: relative;
    height: calc(100vh - 70px);
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Text overlay styling for carousel slides */
.carousel-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.carousel-text-overlay .content {
    margin-left: 70px;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    color: white;
    align-items: start;
}

.content h3 {
    margin: 0;
    padding: 0;
    font-size: 50px;
    font-weight: bold;
    color: white;
}

.address,
.date {
    margin: 0;
    font-size: 18px;
    padding: 0;
    color: var(--ar-light-color);
}

.designation {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    color: var(--ar-light-color);
}

/* Ensure that carousel images cover the whole area */
.carousel-slide {
    position: relative; /* Ensure text overlay is inside slide */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
}

.carousel-slide img {
    width: 100vw;
    height: 100vh; /* Adjust height as needed */
    object-fit: cover; /* Maintain aspect ratio */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Carousel indicator dots */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    margin-left: 0;
    margin-right: 0;
}

.carousel-indicators .indicator, .c-indicators button {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.carousel-indicators .indicator.active, .c-indicators button.active {
    background-color: rgba(255, 255, 255, 0.9);
}

#artGallery, #portfolio,
#architectOfTheWeek, #architectOfTheWeek,
#getStartedSection, #architectOfTheWeek,
#architectOfTheWeek, #journal, #aboutUsSection {
    padding: 80px 0;
}

#portfolio, #homeTestimonialSection, .week-container {
    background-color: var(--ar-secondary-background-color);
}

.art-button,
.art-button-2 {
    display: flex;
    outline: none;
    border: 1px solid #f3f3f3;
    padding: 10px 30px;
    background-color: transparent;
    border-radius: 8px;
    color: #f3f3f3;
    font-size: 18px;
    transition: all 0.5s ease;
}

.ardi-button {
    background-color: var(--ar-primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ardi-button:hover {
    background-color: var(--ar-secondary-color);
    color: white;
}

.ardi-transparent-button {
    background-color: transparent;
    border: 1px solid var(--ar-primary-color);
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: var(--ar-primary-color);
    align-items: center;
    transition: all 0.3s ease;
}

.ardi-transparent-button:hover {
    background-color: var(--ar-secondary-color);
    color: var(--ar-light-color);
}

.art-button-2 {
    color: var(--ar-dark-color);
    border: 1px solid var(--ar-dark-color);
}

.art-button:hover,
.art-button-2:hover {
    background-color: var(--ar-secondary-color);
    border: none;
    color: var(--ar-secondary-background-color);
}

.title-text {
    font-size: 30px;
    font-weight: bold;
    color: var(--ar-primary-color);
}

.sub-title-text {
    font-size: 18px;
    color: var(--ar-secondary-color)
}

.link {
    transition: color 0.5s ease;
    color: var(--ar-dark-color);
    font-size: 14px;
    text-decoration: underline;
}

.link:hover {
    color: var(--ar-secondary-color);
}

#aboutUsSection {
    background: var(--ar-secondary-background-color);
}

#aboutUsSection .row {
    display: flex;
    align-items: stretch;
}

#aboutUsSection .image-container {
    height: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}

#aboutUsSection .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.column-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.art-column {
    width: calc(33.33% - 16px);
}

.art-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.art-content {
    position: absolute;
    bottom: 0;
    height: 0;
    width: 100%;
    left: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.8s ease;
}

.art-content p {
    color: var(--ar-light-color);
    font-size: 14px;
}

.art-content span {
    color: var(--ar-light-color);
    font-size: 13px;
}

.art-content h6 {
    font-weight: 600;
    font-size: 18px;
    color: var(--ar-light-color);
}

.art-item:hover .art-content {
    height: auto;
    padding: 12px;
}

.art-item img,
.journal-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#getStartedSection {
    padding: 80px 0;
}

/* Cards container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.card p {
    font-size: 16px;
    color: var(--ar-dark-color);
    margin-bottom: 10px;
}

/* Hover effect for cards */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.role-description {
    font-size: 0.95rem; /* Slightly smaller than regular text */
    font-style: italic; /* Italic for differentiation */
    color: var(--ar-dark-color); /* A muted color to complement the main text */
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.05); /* Light gray background for emphasis */
    padding: 6px 10px;
    border-left: 4px solid var(--ar-secondary-color); /* Adds a colored accent to match the role */
    border-radius: 4px;
}

.journal-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.5s ease;
    color: var(--ar-dark-color);
}

.journal-item:hover {
    transform: translateY(-10px);
    color: var(--ar-secondary-color);
}

.journal-item p {
    font-size: 16px;
    color: var(--ar-dark-color);
    transition: color 0.5s ease;
}

.journal-item:hover p {
    color: var(--ar-secondary-color);
    transition: color 0.5s ease;
}

.journal-item h4 {
    font-weight: 600;
    font-size: 24px;
}

#architectOfTheWeek,
#artistOfTheWeek {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 50px 0;
}

#artistOfTheWeek .week-content,
#architectOfTheWeek .week-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.week-content p {
    font-size: 16px;
}

.week-content h3 {
    font-size: 20px;
}

.week-content .popular {
    font-size: 50px;
    color: var(--ar-primary-color);
}

.week-content .week-text {
    text-transform: uppercase;
    font-size: 28px;
    color: var(--ar-secondary-color);
}

#artistOfTheWeek .image-container,
#architectOfTheWeek .image-container {
    position: relative;
    min-height: 100%;
    width: auto;
}

.image-container img {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 50%; /* Center the image horizontally */
    transform: translateX(-50%); /* Adjust positioning for centering */
    height: 100%; /* Ensure the height is always 100% */
    width: auto; /* Make the width auto to maintain aspect ratio */
    max-width: 100%;
    object-position: center;
    object-fit: contain; /* Ensure the image retains the aspect ratio */
}


.timeline-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 50px 0;
    overflow-x: auto;
    position: relative;
}

.timeline-item {
    background-color: var(--ar-secondary-background-color);
    color: var(--ar-dark-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 250px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.timeline-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--ar-secondary-color);
}
.timeline-title {
    font-size: 18px;
    font-weight: bold;
}
.timeline-time {
    font-size: 14px;
    color: var(--ar-dark-color);
    margin-top: 5px;
}
.timeline-time i {
    margin-right: 5px;
    font-size: 14px;
}
.timeline-desc {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}
.timeline-arrow {
    width: 40px;
    height: 2px;
    background-color: var(--ar-secondary-color);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.timeline-arrow::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -4px;
    border-left: 8px solid var(--ar-secondary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Footer styling */
footer {
    background-color: var(--ar-dark-color);
    color: var(--ar-light-color);
}

footer p {
    font-size: 18px;
}

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

@media (max-width: 767px) {
    /* Responsive styling */
    .carousel-item img {
        height: 60vh;
    }

    .column-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    #artistOfTheWeek,
    #architectOfTheWeek {
        grid-template-columns: repeat(1, 1fr);
    }

    #artistOfTheWeek .image-container,
    #architectOfTheWeek .image-container {
        position: relative;
        min-height: 400px;
    }

    section.bg-black .col-md-4 {
        margin-bottom: 2rem;
    }

    .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
