/* =============================================
   SHINE RINGS - JEWELRY BOUTIQUE
   Exact Match to Original Website
============================================= */

/* Import Original Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Nanum+Myeongjo:wght@400;700;800&display=swap');

/* =============================================
   CSS VARIABLES - Match Original Colors
============================================= */
:root {
    /* Original Brand Colors */
    --ui-brand-color: #f52e62;
    --ui-dark-accent-color: #555;
    --ui-dark-shade-color: #2f2f2f;
    --ui-light-accent-color: #f5f5f5;
    --ui-light-shade-color: #fff;
    
    /* Fonts - Exact Match */
    --font-heading: 'Nanum Myeongjo', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 85px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ui-dark-shade-color);
    background-color: var(--ui-light-shade-color);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   TYPOGRAPHY - Match Original
============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ui-dark-shade-color);
}

h1 {
    font-size: 72px;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 36px;
    letter-spacing: 0.02em;
}

h3 {
    font-size: 24px;
    letter-spacing: 0.01em;
}

p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: var(--ui-dark-shade-color);
    letter-spacing: 0.02em;
}

.section-title.left {
    text-align: left;
}

.section-title.light {
    color: var(--ui-light-shade-color);
}

/* =============================================
   BUTTONS - Match Original
============================================= */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--ui-brand-color);
    color: var(--ui-light-shade-color);
}

.btn-primary:hover {
    background: #d42454;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--ui-dark-shade-color);
    color: var(--ui-light-shade-color);
}

.btn-secondary:hover {
    background: #444;
}

/* =============================================
   HEADER - Match Original
============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--ui-light-shade-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 30px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--ui-dark-shade-color);
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #888;
    text-transform: uppercase;
}

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

.nav-list a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ui-dark-shade-color);
}

.nav-list a:hover {
    color: var(--ui-brand-color);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ui-dark-shade-color);
    color: var(--ui-light-shade-color);
    font-size: 12px;
}

.social-links a:hover {
    background: var(--ui-brand-color);
    color: var(--ui-light-shade-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--ui-dark-shade-color);
}

/* =============================================
   HERO SECTION - Match Original
============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--ui-light-shade-color);
    overflow: hidden;
}

.hero .container {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-content {
    padding: 40px 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    color: var(--ui-dark-shade-color);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-divider-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 400px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* =============================================
   COLLECTIONS SECTION
============================================= */
.collections {
    padding: var(--section-padding);
    background: var(--ui-light-shade-color);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    text-align: center;
}

.collection-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--ui-light-accent-color);
}

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

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

.collection-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--ui-dark-shade-color);
}

/* =============================================
   BESPOKE JEWELRY SECTION
============================================= */
.bespoke-jewelry {
    padding: 50px 0;
    background: var(--ui-light-shade-color);
}

.bespoke-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bespoke-card {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--ui-light-accent-color);
}

.bespoke-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bespoke-card:hover img {
    transform: scale(1.05);
}

/* =============================================
   FEATURES SECTION - Dark Background
============================================= */
.features {
    padding: var(--section-padding);
    background: var(--ui-dark-shade-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    color: var(--ui-light-shade-color);
}

.feature-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--ui-light-shade-color);
    line-height: 1.4;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about {
    padding: var(--section-padding);
    background: var(--ui-light-shade-color);
}

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

.about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* =============================================
   BESPOKE CTA SECTION
============================================= */
.bespoke-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.bespoke-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bespoke-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bespoke-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

.bespoke-cta-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
    color: var(--ui-light-shade-color);
    padding-left: 30px;
}

.bespoke-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--ui-light-shade-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.bespoke-cta-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* =============================================
   SERVICES SECTION
============================================= */
.services {
    padding: var(--section-padding);
    background: var(--ui-light-shade-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    text-align: center;
}

.service-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 15px;
    background: var(--ui-light-accent-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--ui-dark-shade-color);
}

/* =============================================
   PROCESS SECTION
============================================= */
.process {
    padding: var(--section-padding);
    background: var(--ui-light-accent-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 20px 15px;
}

.step-number {
    width: 45px;
    height: 45px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ui-dark-shade-color);
    color: var(--ui-light-shade-color);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--ui-dark-shade-color);
}

.process-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* =============================================
   QUOTE SECTION
============================================= */
.quote-section {
    padding: var(--section-padding);
    background: var(--ui-light-shade-color);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quote-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--ui-dark-shade-color);
    margin-bottom: 20px;
}

.quote-content blockquote {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.quote-author {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   BOUTIQUE SECTION
============================================= */
.boutique {
    padding: var(--section-padding);
    background: var(--ui-light-accent-color);
}

.boutique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.boutique-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.boutique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boutique-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--ui-dark-shade-color);
    margin-bottom: 15px;
}

.boutique-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* =============================================
   NEWSLETTER SECTION
============================================= */
.newsletter {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.newsletter-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
    color: var(--ui-light-shade-color);
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    color: var(--ui-light-shade-color);
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* =============================================
   TIPS SECTION
============================================= */
.tips {
    padding: var(--section-padding);
    background: var(--ui-light-shade-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tip-card {
    background: var(--ui-light-accent-color);
}

.tip-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tip-card:hover .tip-image img {
    transform: scale(1.05);
}

.tip-content {
    padding: 25px;
}

.tip-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--ui-dark-shade-color);
}

.tip-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

/* =============================================
   CONTACT SECTION - Match Original
============================================= */
.contact {
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.contact-form-card {
    background: var(--ui-light-shade-color);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    margin-left: auto;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: var(--ui-dark-shade-color);
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.contact-divider span {
    display: block;
    height: 1px;
    background: var(--ui-brand-color);
}

.contact-divider span:nth-child(1) { width: 30px; }
.contact-divider span:nth-child(2) { width: 8px; height: 8px; border-radius: 50%; }
.contact-divider span:nth-child(3) { width: 30px; }

.contact-desc {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition);
    background: var(--ui-light-shade-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ui-brand-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

.contact-image {
    position: relative;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--ui-dark-shade-color);
    color: var(--ui-light-shade-color);
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--ui-brand-color);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--ui-light-shade-color);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--ui-light-shade-color);
    font-size: 12px;
}

.footer-social a:hover {
    background: var(--ui-brand-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

/* =============================================
   RESPONSIVE DESIGN
============================================= */
@media (max-width: 1024px) {
    .collections-grid,
    .bespoke-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h1 { font-size: 42px; }
    h2 { font-size: 28px; }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    /* Header */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--ui-light-shade-color);
        padding: 25px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .header .social-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }

    .hero-divider-img {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Grids */
    .collections-grid,
    .bespoke-grid,
    .features-grid,
    .services-grid,
    .process-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .quote-grid,
    .boutique-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-form-card {
        max-width: 100%;
        margin: 0;
        padding: 40px 25px;
    }
    
    .contact-image {
        height: 400px;
    }
    
    .bespoke-cta-overlay {
        width: 100%;
    }
    
    .bespoke-cta-content {
        padding: 0 20px;
        text-align: center;
        max-width: 100%;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-content {
        max-width: 100%;
        text-align: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Form */
    .form-row {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-logo {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .bespoke-cta-content h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        width: 150px;
        height: 150px;
    }
}
