/* 
 * Awatram Sarees Gwalior - Premium UI Overlay
 * -----------------------------
 * This file contains the design system and overrides for the luxury experience.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F4E8C1;
    --charcoal: #1A1A1A;
    --ivory: #FDFBF7;
    --text-main: #2D2D2D;
    --text-muted: #666666;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--ivory);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
.intro-title,
.tt-heading-title {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em;
}

/* Header Refinement - Left Menu, Center Logo, Right Icons */
#header {
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-filled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    margin: 0;
    z-index: 10;
}

#header #logo img {
    max-height: 80px;
}

.tt-main-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    height: 100%;
}

.header-attributes {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: 0;
}

.tt-menu-nav>li>a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: var(--charcoal);
    padding: 15px 15px;
}

#header.header-transparent .tt-menu-nav>li>a {
    color: #FFF;
}

/* Hero Section Refinement */
/* #tt-intro {
    height: 100vh;
} */

.intro-title {
    font-size: clamp(3rem, 10vw, 6rem) !important;
    color: #FFF;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.intro-caption-wrap {
    padding-top: 15vh;
}

.btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    border-radius: 0;
    padding: 15px 35px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

/* About Section Refinement */
#about-us-section {
    background: var(--ivory);
}

.tt-heading-title {
    font-size: 42px !important;
    color: var(--charcoal) !important;
    margin-bottom: 30px !important;
}

.zig-zag-separator {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.zig-zag-separator span {
    width: 40px;
    height: 1px;
    background: var(--gold);
    border: none !important;
    transform: none !important;
}

.split-box {
    margin-top: 60px;
}

.split-box-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.119);
}

.split-box-image img {
    transition: transform 1s ease;
    border-radius: 25px;
}

.split-box-image:hover img {
    transform: scale(1.05);
}

/* Section Spacing */
.tt-wrap {
    max-width: 1200px !important;
}

/* Contact Section Refinement */
#contact-section {
    padding: 100px 0;
    background: #FFF;
}

.contact-info-title p strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
}

.contact-form-inner {
    background: var(--ivory) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px !important;
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    padding-left: 0;
    transition: var(--transition);
}

.form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--gold);
}

/* Featured Collections (New) */
.featured-collection {
    padding: 120px 0;
    background: #1A1A1A;
    color: #FFF;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transition: var(--transition);
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 5px;
}

.collection-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}