@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Fira+Sans:wght@300;400;500;600&display=swap');

:root {
    --matte-black: #1A1A1A;
    --brushed-gold: #C2A26F;
    --cool-steel-grey: #B0BCC5;
    --deep-ruby-red: #A32A39;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

header {
    background-color: var(--matte-black);
    min-height: 70px;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brushed-gold);
    text-decoration: none;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--cool-steel-grey);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--brushed-gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background-color: var(--brushed-gold);
    transition: transform 0.4s ease;
}

nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--brushed-gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

section {
    margin: 2rem 0;
}

.hero {
    background: linear-gradient(135deg, var(--matte-black) 0%, #2a2a2a 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brushed-gold);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cool-steel-grey);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--deep-ruby-red);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #8a1f2d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 42, 57, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--matte-black);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--brushed-gold);
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.jewelry-image {
    position: relative;
    overflow: hidden;
}

.jewelry-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(194, 162, 111, 0.3), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.jewelry-image:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--matte-black);
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

footer {
    background-color: var(--matte-black);
    color: var(--cool-steel-grey);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--brushed-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--cool-steel-grey);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brushed-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.privacy-links a {
    color: var(--cool-steel-grey);
    text-decoration: none;
    font-size: 0.9rem;
}

.privacy-links a:hover {
    color: var(--brushed-gold);
}

.privacy-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--matte-black);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    max-width: 600px;
    width: 90%;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

.privacy-popup button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.privacy-popup .btn-accept {
    background-color: var(--deep-ruby-red);
    color: #fff;
}

.privacy-popup .btn-accept:hover {
    background-color: #8a1f2d;
}

.privacy-popup .btn-decline {
    background-color: transparent;
    color: var(--cool-steel-grey);
    border: 1px solid var(--cool-steel-grey);
}

.privacy-popup .btn-decline:hover {
    background-color: var(--cool-steel-grey);
    color: var(--matte-black);
}

.policy-page,
.terms-page,
.return-page,
.cookies-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

.policy-page section,
.terms-page section,
.return-page section,
.cookies-page section {
    margin-bottom: 2rem;
}

.policy-page h2,
.terms-page h2,
.return-page h2,
.cookies-page h2 {
    text-align: left;
    color: var(--matte-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-page h3,
.terms-page h3,
.return-page h3,
.cookies-page h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--matte-black);
        display: none;
        padding: 1rem 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    nav a::after {
        left: 0;
        transform: scaleX(0);
    }
    
    nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        padding: 1.5rem;
    }
    
    .privacy-popup-buttons {
        flex-direction: column;
    }
    
    .privacy-popup button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    header {
        padding: 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
}
