/* Syeta Custom Styles */
/* Color Palette from Logo */
:root {
    --syeta-gold: #D4AF37;
    --syeta-burgundy: #8B2635;
    --syeta-cream: #FFF8F3;
    --syeta-dark: #1a1a1a;
    --syeta-accent: #C41E3A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--syeta-dark);
}

/* Navbar Styles */
.navbar-syeta {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    /* padding: 0.5rem 0; */
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-syeta .navbar {
    padding: 0.3rem 0;
}

.navbar-syeta.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0;
}

.logo-syeta {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-syeta:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-nav .nav-link {
    color: var(--syeta-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--syeta-burgundy);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--syeta-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-syeta {
        padding: 0.5rem 0;
    }
    
    .logo-syeta {
        height: 55px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav {
        gap: 0.5rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 6px;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--syeta-cream);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .logo-syeta {
        height: 50px;
    }
    
    .navbar-toggler {
        padding: 0.4rem;
    }
}

/* Button Styles */
.btn-syeta-primary {
    background: linear-gradient(135deg, var(--syeta-burgundy), var(--syeta-accent));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-syeta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
    color: white;
}

.btn-outline-syeta {
    border: 2px solid var(--syeta-burgundy);
    color: var(--syeta-burgundy);
    background: transparent;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-syeta:hover {
    background: var(--syeta-burgundy);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--syeta-burgundy);
    border: 2px solid white;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--syeta-burgundy);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--syeta-cream) 0%, #fff 100%);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--syeta-burgundy), var(--syeta-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.2), transparent);
    pointer-events: none;
}

/* Features Section */
.features-section {
    background: white;
    padding: 4rem 0;
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.1);
    border-color: var(--syeta-gold);
}

.feature-icon {
    font-size: 3rem;
    color: var(--syeta-burgundy);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: var(--syeta-gold);
    transform: scale(1.1);
}

.feature-card h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Collections Section */
.collections-section {
    background: linear-gradient(180deg, #fff 0%, var(--syeta-cream) 100%);
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--syeta-burgundy), var(--syeta-gold));
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.collection-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}

.collection-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--syeta-cream), #fff);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 38, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.collection-info h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.collection-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.collection-price {
    color: var(--syeta-burgundy);
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background: white;
    padding: 4rem 0;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    color: var(--syeta-burgundy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, var(--syeta-cream) 0%, #fff 100%);
    padding: 4rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--syeta-gold);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.1);
}

.stars {
    color: var(--syeta-gold);
    font-size: 1.2rem;
}

.testimonial-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--syeta-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 4rem 0;
}

.contact-form .form-control {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--syeta-burgundy);
    box-shadow: 0 0 0 0.2rem rgba(139, 38, 53, 0.1);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--syeta-burgundy), var(--syeta-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--syeta-burgundy), var(--syeta-accent));
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Footer */
.footer-syeta {
    background: var(--syeta-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--syeta-gold);
}

.footer-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--syeta-gold);
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    color: var(--syeta-gold);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--syeta-gold);
    color: var(--syeta-dark);
    transform: scale(1.2);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    border-radius: 5px;
    padding: 10px 12px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--syeta-gold);
    box-shadow: none;
    color: white;
}

.footer-syeta .border-light {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        padding: 12px !important;
    }

    .hero-image-wrapper {
        height: 400px;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .collection-image {
        height: 300px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-section::before {
        width: 300px;
        height: 300px;
    }
}

/* Utility Classes */
.text-muted {
    color: #999 !important;
}

.main-content {
    min-height: 100vh;
}

/* Smooth Transitions */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--syeta-burgundy), var(--syeta-gold));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--syeta-burgundy);
}
