/* ==========================================================================
   Aesthetic Division Specific Styles
   ========================================================================== */

/* Override CSS Variables for Aesthetic */
:root {
    --primary-color: #8C7366;
    --secondary-color: #5C4742;
    --accent-color: #E8B4A6;
    --bg-color: #FAF8F5;
    --text-color: #2D2926;
    --divider-color: rgba(140, 115, 102, 0.1);
}

/* Fonts - Aesthetic uses more elegant typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Marcellus", serif;
}

/* Page Header - Aesthetic Dark Style */
.page-header.bg-section.dark-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3D2D28 100%);
    padding: 120px 0 60px;
    position: relative;
}

.page-header.dark-section .page-header-box h1 {
    font-size: 48px;
    color: var(--white-color);
    margin-bottom: 15px;
}

.page-header.dark-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header.dark-section .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.page-header.dark-section .breadcrumb-item.active {
    color: var(--white-color);
}

.page-header.dark-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Section - Aesthetic */
.hero-section.aesthetic-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3D2D28 100%);
}

.aesthetic-hero .hero-content .section-title h3 {
    color: var(--accent-color);
}

.aesthetic-hero .hero-content .section-title h1,
.aesthetic-hero .hero-content .section-title h2 {
    color: var(--white-color);
}

.aesthetic-hero .hero-content .section-title h1 span,
.aesthetic-hero .hero-content .section-title h2 span {
    color: var(--accent-color);
}

.aesthetic-hero .hero-content p {
    color: rgba(255, 255, 255, 0.8);
}

.aesthetic-hero .hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* Services Section - Aesthetic */
.services-section.bg-section {
    background: var(--bg-color);
    border-radius: 30px;
    padding: 80px 0;
    margin: 0 auto;
    max-width: 1800px;
}

/* Service Item - Aesthetic Style */
.service-item.aesthetic-service {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(140, 115, 102, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-item.aesthetic-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(140, 115, 102, 0.2);
}

.service-item.aesthetic-service .service-content {
    padding: 25px 2px;
}

.service-item.aesthetic-service .service-content-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-item.aesthetic-service .service-content-title h2 {
    font-size: 22px;
    margin: 0;
    font-family: "Marcellus", serif;
}

.service-item.aesthetic-service .service-content-title h2 a {
    color: var(--primary-color);
}

.service-item.aesthetic-service .service-content-title h2 a:hover {
    color: var(--accent-color);
}

.service-item.aesthetic-service .readmore-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.service-item.aesthetic-service .readmore-btn:hover {
    background: var(--primary-color);
    transform: rotate(45deg);
}

.service-item.aesthetic-service .service-content p {
    color: var(--text-color);
    font-size: 15px;
    margin: 0;
}

.service-item.aesthetic-service .service-image {
    position: relative;
    overflow: hidden;
}

.service-item.aesthetic-service .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item.aesthetic-service:hover .service-image img {
    transform: scale(1.1);
}

/* Team Card - Aesthetic Style */
.team-card.aesthetic-team {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(140, 115, 102, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.team-card.aesthetic-team:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(140, 115, 102, 0.2);
}

.team-card.aesthetic-team .team-image {
    position: relative;
    overflow: hidden;
}

.team-card.aesthetic-team .team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card.aesthetic-team:hover .team-image img {
    transform: scale(1.05);
}

.team-card.aesthetic-team .team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(to top, rgba(92, 71, 66, 0.9), transparent);
    transition: bottom 0.4s ease;
}

.team-card.aesthetic-team:hover .team-social {
    bottom: 0;
}

.team-card.aesthetic-team .team-social a {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-card.aesthetic-team .team-social a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.team-card.aesthetic-team .team-content {
    padding: 25px;
    text-align: center;
}

.team-card.aesthetic-team .team-content h3 {
    font-size: 24px;
    font-family: "Marcellus", serif;
    margin-bottom: 5px;
}

.team-card.aesthetic-team .team-content h3 a {
    color: var(--primary-color);
}

.team-card.aesthetic-team .team-content p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 0;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
}

.what-we-image-1 img {
    border-radius: 20px;
}

.what-we-image-2 {
    position: relative;
}

.what-we-image-2 img {
    border-radius: 20px;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--accent-color);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
}

.experience-box h2 {
    font-size: 42px;
    color: var(--white-color);
    margin-bottom: 5px;
}

.experience-box p {
    color: var(--white-color);
    font-size: 14px;
    margin: 0;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-color);
}

.feature-list ul li i {
    color: var(--accent-color);
    font-size: 18px;
}

/* CTA Section - Aesthetic */
.cta-section.aesthetic-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
}

.cta-section.aesthetic-cta .cta-content h2 {
    color: var(--white-color);
}

.cta-section.aesthetic-cta .cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section.aesthetic-cta .btn-default {
    background: var(--accent-color);
    color: var(--white-color);
}

.cta-section.aesthetic-cta .btn-default:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Button Styles - Aesthetic */
.btn-default {
    background: var(--accent-color);
    position: relative;
    padding: 17px 25px;
    margin-right: 50px;
}

.btn-default::before {
    background-color: var(--primary-color);
    right: -50px;
    width: 50px;
    height: 50px;
}

.btn-default.btn-highlighted {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-default.btn-highlighted::before {
    background-color: var(--accent-color);
}

/* Stats Section - Aesthetic */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Instagram Section - Aesthetic */
.instagram-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.instagram-feed-grid.aesthetic {
    background: var(--white-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(140, 115, 102, 0.1);
}

.instagram-feed-grid.aesthetic .instagram-grid-placeholder {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.instagram-feed-grid.aesthetic .insta-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-color) 0%, #F5EDE8 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-feed-grid.aesthetic .insta-item:hover {
    transform: scale(1.05);
}

.instagram-feed-grid.aesthetic .insta-item .insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(140, 115, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-feed-grid.aesthetic .insta-item:hover .insta-overlay {
    background: rgba(140, 115, 102, 0.5);
}

.instagram-feed-grid.aesthetic .insta-item .insta-overlay i {
    font-size: 28px;
    color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.instagram-feed-grid.aesthetic .insta-item:hover .insta-overlay i {
    opacity: 1;
    color: var(--white-color);
    transform: scale(1.2);
}

.instagram-feed-grid.aesthetic .instagram-cta .btn-default i {
    margin-right: 8px;
}

@media (max-width: 991px) {
    .instagram-feed-grid.aesthetic .instagram-grid-placeholder {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .instagram-feed-grid.aesthetic .instagram-grid-placeholder {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Text Animation Style 3 (Aesthetic) */
.text-anime-style-3 {
    font-family: "Marcellus", serif;
}

/* Section Title - Aesthetic */
.section-title h3::before {
    background: var(--accent-color);
}

.section-title h2 span {
    color: var(--accent-color);
}
