/*
Theme Name: Arcke
Theme URI: http://example.com/arcke
Author: Sundeep
Author URI: http://example.com
Description: Architecture & Interior Design WordPress Theme converted from HTML.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: architecture, interior-design, construction
Text Domain: arcke
*/

/* 
Note: The actual styles are in assets/css/style.css. 
This file is used for WordPress theme identification.
*/

/* ==========================================================================
   Sundeep Service Modals
   ========================================================================== */
.sundeep-service-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay */
    backdrop-filter: blur(8px); /* Modern blur effect */
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sundeep-service-modal.active {
    display: flex;
    opacity: 1;
}

.sundeep-modal-content {
    background: #ffffff;
    border-radius: 16px;
    max-width: 850px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sundeep-service-modal.active .sundeep-modal-content {
    transform: scale(1);
}

.sundeep-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #111111;
    transition: all 0.3s ease;
    z-index: 10;
}

.sundeep-modal-close:hover {
    background: #c5a880; /* Theme Gold Color */
    color: #ffffff;
    transform: rotate(90deg);
}

.sundeep-modal-body {
    display: flex;
    flex-wrap: wrap;
}

.sundeep-modal-img {
    flex: 1 1 350px;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.sundeep-modal-info {
    flex: 1 2 450px;
    padding: 40px;
    background: #ffffff;
}

.sundeep-modal-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: #c5a880;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: inline-block;
    text-transform: uppercase;
}

.sundeep-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sundeep-modal-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.sundeep-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sundeep-modal-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.sundeep-modal-list li i {
    color: #c5a880;
    margin-right: 12px;
    font-size: 16px;
}

.sundeep-modal-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #111111;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sundeep-modal-btn:hover {
    background: #c5a880;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}

@media (max-width: 768px) {
    .sundeep-modal-body {
        flex-direction: column;
    }
    .sundeep-modal-img {
        min-height: 250px;
    }
    .sundeep-modal-info {
        padding: 30px 20px;
    }
    .sundeep-modal-title {
        font-size: 24px;
    }
}

/* Hide View Details option from Latest Works hover overlay */
.project-area.one .project-button {
    display: none !important;
}

.project-area.one .project-content {
    padding: 20px 25px 25px !important;
}


