/* =========================================
   Custom Styles - Shakti Flowrist
   ========================================= */

/* --- General Utilities --- */
.gold-bg-rotated {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 3px solid #D4AF37;
    z-index: 0;
}

/* Preloader logo — inside the ring-outer wrapper */
.loader-logo-new {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    border: none !important;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

/* Quick links spacing */
.footer-links li { 
    margin-bottom: 10px; 
}

/* ========================
   ABOUT SECTION
   ======================== */
.zoom-container-styled {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212,175,55,0.25), 0 0 0 2px rgba(212,175,55,0.15);
}
.zoom-container-styled img,
.zoom-container-styled img.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.zoom-container-styled:hover img {
    transform: scale(1.05);
}

.about-story-section {
    background-color: #000;
    padding: 90px 5%;
}

.about-story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-text-container {
    flex: 1;
    min-width: 300px;
}

.stats-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
    margin-bottom: 30px;
}

/* Responsive about section */
@media (max-width: 900px) {
    .about-story-container { gap: 40px; }
    .zoom-container-styled { height: 320px; }
    .about-img-container, .about-text-container { min-width: 100%; }
    .stats-container { gap: 30px; }
}

.cta-section-styled {
    padding: 100px 5%;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* --- Footer Links --- */
.designer-link {
    color: #D4AF37 !important;
    text-decoration: none;
    font-weight: 700;
}

.view-profile-link {
    color: #D4AF37;
    font-size: 0.85rem;
    text-decoration: none;
}
.view-profile-link:hover { text-decoration: underline; }


/* --- About Page — Why Choose Cards --- */
.features-grid.cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .features-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid.cols-4 { grid-template-columns: 1fr; }
}

.feature-card-about {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.feature-card-about:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.15);
}
.feature-card-about .icon-wrapper {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.5s ease;
    position: relative; z-index: 1;
}
.feature-card-about:hover .icon-wrapper {
    background: var(--primary-color);
    transform: rotateY(360deg);
}
.feature-card-about .feature-icon-i { font-size: 2rem; color: var(--primary-color); transition: all 0.5s ease; }
.feature-card-about:hover .feature-icon-i { color: #000; }


/* --- Contact Page --- */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-form {
    background: #0d0d0d;
    padding: 40px;
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.contact-form h3 { color: #e0e0e0 !important; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #aaa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 0;
    background: #111;
    color: #e0e0e0;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
    outline: none;
}
.form-control:focus { border-color: #D4AF37; }
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 22px;
    background: #0d0d0d;
    border: 1px solid rgba(212,175,55,0.12);
    transition: transform 0.3s ease, border-color 0.3s;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.4); }
.info-icon {
    font-size: 1.3rem;
    color: #000;
    background: #D4AF37;
    width: 50px; height: 50px;
    display: flex; justify-content: center; align-items: center;
    flex-shrink: 0;
}
.info-card h3 { color: #D4AF37 !important; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-card p { color: #ccc; font-size: 0.9rem; margin: 0; }

/* --- Image Utilities --- */
.img-logo { height: 90px; width: auto; display: block; }
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-feature-bg { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-full { width: 100%; height: 100%; object-fit: cover; }

/* --- Banner backgrounds --- */
.banner-bg-marriage-2 { background-image: url('../images/portfolio/marriage/marriage_2.jpg'); }
.banner-bg-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/portfolio/marriage/marriage_3.jpg') center/cover fixed;
}
.banner-bg-pattern { background-image: url('../images/pattern.png'); }

/* --- Section Specifics --- */
.why-choose-bg { background-color: #0a0a0a; position: relative; overflow: hidden; }
.pattern-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.05; pointer-events: none;
}

/* Typography Utilities */
.font-great-vibes {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-color);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}
.font-h2-white { color: #fff; font-size: 3rem; line-height: 1.1; margin: 0; }
.text-highlight { color: var(--primary-color); display: block; }
.text-desc { margin-bottom: 20px; color: var(--text-color); font-size: 1.05rem; line-height: 1.85; }
.text-desc-last { margin-bottom: 30px; color: var(--text-color); font-size: 1.05rem; line-height: 1.85; }
.stat-number { font-size: 3rem; color: var(--primary-color); margin-bottom: 5px; }
.stat-label { color: #ddd; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.cta-title { color: #fff; font-size: 3rem; margin-bottom: 20px; }
.cta-desc { color: #ddd; font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; }
.cta-btn { padding: 15px 40px; font-size: 1.1rem; }

/* Page Banner Styled */
.page-header-styled, .page-banner-styled {
    padding: 150px 5% 80px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}
