/* styles.css - Pryme Essence - Ultra Modern Black & Silver Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --black: #000000;
    --silver: #C0C0C0;
    --light-silver: #E8E8E8;
    --dark-gray: #0E0E10;
    --mid-gray: #1A1A1D;
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(192, 192, 192, 0.14);
    --text: #FFFFFF;
    --muted: rgba(255, 255, 255, 0.72);
    --shadow: rgba(0, 0, 0, 0.55);
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(1200px 700px at 20% 10%, rgba(192, 192, 192, 0.14), transparent 55%),
                radial-gradient(900px 600px at 80% 0%, rgba(232, 232, 232, 0.10), transparent 50%),
                linear-gradient(180deg, var(--black), var(--dark-gray) 60%, var(--black));
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
::-webkit-scrollbar-thumb { background: rgba(192,192,192,0.28); border-radius: 12px; }
::-webkit-scrollbar-thumb:hover { background: rgba(192,192,192,0.42); }

/* Layout helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 96px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--light-silver);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(192,192,192,0.10);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0,0,0,0.78);
    border-bottom: 1px solid rgba(192,192,192,0.18);
}

.navbar-collapse {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    border-radius: 14px;
    padding: 10px 12px;
}

.navbar .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.navbar-logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(192,192,192,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: var(--transition);
}

.navbar-logo:hover {
    transform: translateY(-1px) scale(1.02);
    border-color: rgba(192,192,192,0.45);
}

.navbar-toggler { border: 1px solid rgba(192,192,192,0.25); }

.nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    margin-left: 12px;
    margin-right: 12px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--light-silver) !important;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(192,192,192,0.0), rgba(192,192,192,0.95), rgba(192,192,192,0.0));
    transition: width 0.28s ease;
}

.nav-link:hover::after { width: 100%; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 84px; /* navbar offset */
    position: relative;
    background-image: url('fotos/foder.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
        radial-gradient(900px 500px at 50% 30%, rgba(192,192,192,0.18), transparent 60%),
        radial-gradient(650px 420px at 20% 70%, rgba(232,232,232,0.12), transparent 55%),
        radial-gradient(700px 500px at 80% 80%, rgba(192,192,192,0.10), transparent 55%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
    padding: 0 20px;
    animation: fadeUp 0.9s ease both;
}

.hero-logo {
    width: min(360px, 80vw);
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(192,192,192,0.22);
    background: rgba(255,255,255,0.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.55);
    margin: 0 auto 18px;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    color: var(--light-silver);
    text-shadow: 0 14px 60px rgba(192,192,192,0.12);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    color: rgba(255,255,255,0.86);
    text-shadow: 0 12px 40px rgba(0,0,0,0.65);
    margin-bottom: 12px;
}

.hero-description {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
    text-shadow: 0 12px 40px rgba(0,0,0,0.65);
    margin-bottom: 28px;
}

.hero-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto 28px;
}

.price-item {
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 18px 18px;
    text-align: left;
    transition: var(--transition);
}

.price-item:hover {
    transform: translateY(-3px);
    border-color: rgba(192,192,192,0.30);
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}

.price-item.featured {
    border-color: rgba(192,192,192,0.55);
    background: linear-gradient(180deg, rgba(192,192,192,0.14), rgba(255,255,255,0.03));
}

.price-label {
    display: block;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--light-silver);
}

.price-save {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

/* Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(192,192,192,0.95), rgba(232,232,232,0.90));
    color: #0A0A0A;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 60px rgba(192,192,192,0.12);
    transition: var(--transition);
}

.btn-modern:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 26px 80px rgba(192,192,192,0.16);
}

.btn-modern.featured {
    background: linear-gradient(135deg, rgba(232,232,232,0.98), rgba(192,192,192,0.86));
}

.btn-primary {
    background: linear-gradient(135deg, rgba(232,232,232,0.98), rgba(192,192,192,0.86));
    color: #0A0A0A;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 20px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 70px rgba(192,192,192,0.12);
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.product-card {
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0,0,0,0.35);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192,192,192,0.35);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img { transform: scale(1.08); }

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.62);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay { opacity: 1; }

.product-info {
    padding: 22px 22px 24px;
}

.product-info h3 {
    font-size: 1.35rem;
    color: var(--light-silver);
    margin-bottom: 8px;
}

.inspiration {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.product-price {
    display: block;
    margin-top: 14px;
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--light-silver);
}

/* Prices section */
.prices-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0));
}

.prices-section .section-title p {
    color: rgba(255, 255, 255, 0.82);
}

.prices-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.price-card {
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 26px;
    box-shadow: 0 22px 70px rgba(0,0,0,0.35);
    transition: var(--transition);
}

.price-card h3 {
    color: var(--light-silver);
    margin-bottom: 10px;
}

.price-card p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 14px;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(192,192,192,0.35);
}

.price-card.featured {
    border-color: rgba(192,192,192,0.55);
    background: linear-gradient(180deg, rgba(192,192,192,0.14), rgba(255,255,255,0.03));
}

.badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(192,192,192,0.16);
    border: 1px solid rgba(192,192,192,0.35);
    color: var(--light-silver);
    font-weight: 700;
    margin-bottom: 12px;
}

.price-card .btn-modern {
    width: 100%;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--light-silver);
    margin: 10px 0 10px;
}

/* About */
.about-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0));
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.about-text h2 {
    color: var(--light-silver);
    font-size: 2.6rem;
    margin-bottom: 6px;
}

.about-text h3 {
    color: rgba(255,255,255,0.82);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.highlight {
    padding-left: 14px;
    border-left: 3px solid rgba(192,192,192,0.55);
    color: rgba(255,255,255,0.88);
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(192,192,192,0.18);
    box-shadow: 0 22px 70px rgba(0,0,0,0.45);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img { transform: scale(1.04); }

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(10px);
    z-index: 2000;
}

.modal-content {
    width: min(520px, 92vw);
    margin: 12vh auto;
    border-radius: 22px;
    background: rgba(18,18,20,0.96);
    border: 1px solid rgba(192,192,192,0.22);
    box-shadow: 0 30px 90px rgba(0,0,0,0.60);
    padding: 26px;
    animation: pop 0.25s ease both;
    text-align: center;
    max-height: 76vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: var(--light-silver);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.close {
    float: right;
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover { color: var(--light-silver); transform: scale(1.06); }

.option-btn {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(192,192,192,0.18);
    background: linear-gradient(135deg, rgba(232,232,232,0.98), rgba(192,192,192,0.86));
    color: #0A0A0A;
    font-weight: 800;
    margin-top: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 70px rgba(192,192,192,0.10); }

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 70px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1200;
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 28px 90px rgba(37, 211, 102, 0.45); }

.whatsapp-float i { color: #fff; font-size: 1.7rem; }

/* Footer */
.footer {
    padding: 70px 0 32px;
    border-top: 1px solid rgba(192,192,192,0.10);
    background: rgba(0,0,0,0.35);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.footer-section h4 {
    color: var(--light-silver);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-section p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.whatsapp-message {
    font-size: 0.92rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(192,192,192,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(192,192,192,0.35);
}

.social-links i { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(192,192,192,0.08);
    text-align: center;
    color: rgba(255,255,255,0.55);
}

.dev-credit {
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}

.dev-credit a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #C0C0C0 0%, #FFFFFF 50%, #C0C0C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.dev-credit a:hover {
    opacity: 0.8;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading */
.loading {
    position: fixed;
    inset: 0;
    background: radial-gradient(900px 500px at 50% 30%, rgba(192,192,192,0.10), transparent 60%),
                var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    transition: opacity 0.45s ease;
}

.loading.hide { opacity: 0; pointer-events: none; }

.loader {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    border: 4px solid rgba(255,255,255,0.10);
    border-top: 4px solid rgba(192,192,192,0.85);
    animation: spin 1s linear infinite;
}

/* Keyframes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 1200px) {
    .container { max-width: 1080px; }
}

@media (max-width: 768px) {
    .section { padding: 86px 0; }
    .section-title { margin-bottom: 38px; }
    .products-grid { gap: 18px; }
    .product-info { padding: 18px 18px 20px; }
    .about-text h2 { font-size: 2.35rem; }
    .about-content { gap: 18px; }
    .prices-container { gap: 14px; }
}

@media (max-width: 600px) {
    .section-title h2 { font-size: 2.1rem; }
    .section-title p { font-size: 1rem; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-prices { gap: 12px; }
    .price-item { padding: 16px; }
}

@media (max-width: 900px) {
    .hero-prices { grid-template-columns: 1fr; }
    .prices-container { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .about-text h2 { font-size: 2.2rem; }
    .product-image { height: 300px; }
}

@media (max-width: 480px) {
    .section { padding: 76px 0; }
    .whatsapp-float { width: 58px; height: 58px; }
    .navbar-logo { width: 40px; height: 40px; }
    .nav-link { margin-left: 6px; margin-right: 6px; }
    .hero { min-height: 92vh; padding-top: 78px; }
    .hero-logo { width: min(280px, 86vw); }
    .hero-content { padding: 0 14px; }
    .hero h1 { letter-spacing: -0.01em; }
    .hero-description { font-size: 1.02rem; }
    .btn-modern { width: 100%; }
    .price-item { text-align: left; }
    .product-image { height: 260px; }
    .modal-content { margin: 10vh auto; padding: 22px; }
    .option-btn { padding: 13px 16px; }
}

@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .section { padding: 68px 0; }
    .hero { padding-top: 74px; }
    .hero h1 { font-size: 2.35rem; }
    .product-image { height: 230px; }
    .whatsapp-float { right: 16px; bottom: 16px; }
}
