/* 
 * Additional CSS for About Page Only
 * These styles complement the main site CSS without duplicating or overriding
 */

/* Hero Text Styles */
.hero-content h1 {
    color: #FFFFFF;
    text-transform: uppercase;
}

.hero-content .tagline {
    color: #FFF;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
    height: 23px;
    align-self: stretch;
    margin: 0 auto;
    display: block;
}

/* Ensure hero images display properly */
.hero-images img:first-child {
    opacity: 1; /* Make sure the first image is visible */
}

/* Concept Boxes Specific Styles */
.concept-box {
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.concept-box:hover {
    transform: translateY(-10px);
}

.concept-box h3 {
    color: #312C2C;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(24px, 5vw, 32px);  /* Responsive font size using clamp */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.concept-box p {
    color: #000;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(16px, 3vw, 20px); /* Responsive font size using clamp */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.concept-img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Our Concept Section Specific Styles */
.our-concept h2 {
    color: #312C2C;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(24px, 5vw, 32px); /* Responsive font size using clamp */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.our-concept .lead {
    height: 95px;
    flex-shrink: 0;
    align-self: stretch;
    color: #312C2C;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(16px, 3vw, 20px); /* Responsive font size */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.our-concept img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 400px;
    flex-shrink: 0;
    width: 100%;
    object-fit: cover;
}
}

.our-concept img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* About Sections Specific Styles */
.about-section h2 {
    color: #312C2C;
    text-align: start;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(24px, 5vw, 32px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.about-section .description {
    flex-shrink: 0;
    align-self: stretch;
    color: #312C2C;
    text-align: start;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(16px, 3vw, 20px); /* Responsive font size */
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}

.about-section img {
    flex-shrink: 0;
    aspect-ratio: 820.91/544.00;
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: auto;
    transform: scale(1.02);

}

.about-section img:hover {
    transform: scale(1.02);
}

/* Urban Is About Section Specific Styles */
.urban-about h2 {
    flex-shrink: 0;
    color: #312C2C;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(24px, 5vw, 32px); /* Responsive font size */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.urban-about h3 {
    flex-shrink: 0;
    color: #312C2C;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(16px, 3vw, 20px); /* Responsive font size */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 15px;
}

/* Mission Section Specific Styles */
.mission h2 {
    flex-shrink: 0;
    color: #312C2C;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(36px, 8vw, 65px); /* Responsive font size */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.mission .lead {
    flex-shrink: 0;
    align-self: stretch;
    color: #312C2C;
    text-align: center;
    font-family: "Montserrat arm", sans-serif;
    font-size: clamp(16px, 3vw, 20px); /* Responsive font size */
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-variant: all-small-caps;
}

.mission-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
    height: 400px;
    flex-shrink: 0;
    object-fit: cover;
}
}

.mission-img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Map Section Specific Styles */
.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}