/* 
   ixirgo BRIDAL - PREMIUM CORE CSS
   Modern, Luxury, Elegant Aesthetic
*/

:root {
    --primary-color: #d4af37;
    /* Luxury Gold */
    --primary-dark: #b68d40;
    --text-dark: #1a1a1a;
    --text-muted: #7d7d7d;
    --bg-light: #fdfcf8;
    --accent-soft: #f9f5f0;
    --white: #ffffff;
    --ls-large: 0.2em;
    --ls-medium: 0.1em;
}

/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.ls-large {
    letter-spacing: var(--ls-large);
}

.ls-medium {
    letter-spacing: var(--ls-medium);
}

.btn-link {
    color: inherit;
}

/* Header and Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand .bridal-logo {
    font-size: 1.8rem;
    color: var(--text-dark);
    transition: color 0.4s ease;
}

.scrolled .navbar-brand .bridal-logo {
    color: var(--text-dark);
}

.nav-link {
    color: var(--text-dark) !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
}

.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    margin-top: 1rem !important;
}

.dropdown-item {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.7rem 2rem;
    letter-spacing: 0.1em;
}

.dropdown-item:hover {
    background-color: var(--accent-soft);
    color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--text-dark);
    text-decoration: none;
    background-color: var(--accent-soft);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Sections */
.section-padding {
    padding: 120px 0;
}

.title-luxury {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.subtitle-gold {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    display: block;
}

/* Custom Buttons */
.btn-luxury {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.4s ease;
    border: 1px solid var(--primary-color);
}

.btn-luxury:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-luxury-outline {
    display: inline-block;
    background-color: rgb(13, 138, 13);
    padding: 1rem 2.5rem;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.4s ease;
}

.btn-luxury-outline:hover {
    background-color: rgb(92, 192, 53);
    color: var(--text-dark);
}

/* Hero UI */
.hero-minimal {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.hero-minimal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-minimal h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Footer UI */
.site-footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 100px 0 50px;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.transform-hover {
    transition: transform 0.4s ease;
    cursor: pointer;
}

.transform-hover:hover {
    transform: translateY(-10px);
}

.transform-hover img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Luxury Product Cards */
.product-card {
    background: #fff;
    padding: 10px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3 / 4;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-product {
    background: #fff;
    color: var(--primary-color, #1a1a1a);
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card:hover .btn-product {
    transform: translateY(0);
}

.product-info {
    flex-grow: 1;
}

.product-info h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.product-info p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
    line-height: 1.5;
}

/* Premium Collection Grid */
.collection-panel {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 83px;
    overflow: hidden;
    cursor: pointer;
}

.collection-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
    transition: opacity 0.5s ease;
}

.collection-panel:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.collection-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.collection-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-explore {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 12px 45px;
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}

.btn-explore:hover {
    background: var(--primary-color, #1a1a1a);
    color: #fff;
    transform: translateY(-5px);
}

.collection-panel {
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.text-gold {
    color: #c5a059;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* 
   --------------------------------------------------------------------------
   LAYOUT ADJUSTMENTS
   --------------------------------------------------------------------------
*/

/* Fixed Header Spacing - İçeriğin header altında kalmasını engeller */
body {
    padding-top: 85px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    body {
        padding-top: 75px;
    }
}