/* ========================================
   VALENPRADI - Luxury Jewelry Website
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a961;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #c9c9c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    border: 2px dashed #999;
    font-weight: 500;
    letter-spacing: 1px;
}

.image-placeholder span {
    display: block;
    line-height: 1.8;
}

.hero-placeholder {
    min-height: 600px;
}

.small-placeholder {
    min-height: 300px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-icons {
    display: flex;
    gap: 25px;
}

.icon {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.icon:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-color);
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-link {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 45px;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 16px 45px;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-link {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
}

.btn-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.about-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Featured Banner */
.featured-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.banner-content h3 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
    color: var(--secondary-color);
}

/* Collections Section */
.collections {
    padding: 120px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.collection-item {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collection-image {
    height: 500px;
    overflow: hidden;
    background: #f5f5f5;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.collection-info {
    padding: 30px;
    text-align: center;
}

.collection-info h3 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.collection-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Showcase Section */
.showcase {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.showcase-overlay h2 {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.showcase-overlay p {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Heritage Section */
.heritage {
    padding: 120px 0;
    background: var(--white);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.heritage-image {
    height: 700px;
    overflow: hidden;
}

.heritage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.heritage-text h3 {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.heritage-text > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #666;
}

.heritage-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.testimonial-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
}

.testimonial-image {
    height: 300px;
    margin-bottom: 30px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.detail h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.detail p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.contact-image {
    height: 600px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.footer-simple {
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: var(--white);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-social a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .about-content,
    .heritage-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .logo {
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 32px;
    }

    .heritage-text h3 {
        font-size: 28px;
    }

    .showcase-overlay h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        height: 80vh;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }
}
