/* public/css/style.css */
.premium-home {
    max-width: 1280px;
    margin: auto;
    padding: 80px 24px;
}

.premium-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 40px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    color: #b45309;
    margin-bottom: 10px;
}

.premium-header h1 {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 700;
    color: #262626;
}

.premium-desc p {
    color: #57534e;
    line-height: 1.8;
}

.premium-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.premium-tabs button {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: #e7e5e4;
    cursor: pointer;
}

.premium-tabs .active {
    background: #b45309;
    color: white;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.premium-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.premium-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.card-meta {
    font-size: 11px;
    letter-spacing: 1px;
    color: #78716c;
    margin-bottom: 10px;
}

.card-body h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.card-body p {
    color: #57534e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-body a {
    color: #b45309;
    text-decoration: none;
    font-weight: 600;
}

.premium-cta {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.premium-cta h2 {
    font-size: 48px;
    margin-bottom: 14px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.cta-buttons a {
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
}

.cta-buttons .primary {
    background: #b45309;
    color: white;
}

.cta-buttons .secondary {
    border: 1px solid #d6d3d1;
    color: #292524;
}

.newsletter-box {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.newsletter-box input {
    width: 100%;
    padding: 14px;
    margin: 18px 0;
    border: 1px solid #d6d3d1;
}

.newsletter-box button {
    width: 100%;
    background: #44403c;
    color: white;
    border: none;
    padding: 14px;
}

@media (max-width: 1024px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-header,
    .premium-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-header h1 {
        font-size: 48px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
