/* ============================================
   MelvinMayard - Main Stylesheet
   Colors: Purple (#4A148C), Gold (#FFD700), White (#FFFFFF)
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #4A148C;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
}

.logo:hover {
    color: #FFFFFF;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
    color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #FFD700;
    color: #4A148C;
}

.btn-primary:hover {
    background: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #FFFFFF;
    color: #4A148C;
}

.btn-secondary:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4A148C;
    border: 2px solid #4A148C;
}

.btn-outline:hover {
    background: #4A148C;
    color: #FFFFFF;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #FFFFFF;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4A148C;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border-bottom: 3px solid #FFD700;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #4A148C;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    background: #4A148C;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

/* Sales/Business/Personal Pages */
.sales-content,
.business-content,
.personal-content {
    padding: 60px 0;
}

.sales-grid,
.business-grid,
.personal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sales-text h2,
.business-text h2,
.personal-text h2 {
    color: #4A148C;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sales-image img,
.business-image img,
.personal-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sales-features {
    margin: 2rem 0;
}

.sales-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.sales-icon {
    font-size: 1.8rem;
}

.business-list {
    list-style: none;
    margin: 1.5rem 0;
}

.business-list li {
    margin: 0.8rem 0;
    font-size: 1.1rem;
}

.features-personal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

.feature-item h3 {
    color: #4A148C;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #4A148C;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #FFD700;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #4A148C;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #4A148C;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-item h3 {
    color: #4A148C;
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4A148C;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    background: #4A148C;
    color: #FFFFFF;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Privacy Page */
.privacy-content {
    padding: 60px 0;
    background: #f9fafb;
}

.privacy-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #FFD700;
}

.privacy-section h2 {
    color: #4A148C;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.privacy-section h3 {
    color: #4A148C;
    margin: 15px 0 10px 0;
    font-size: 1.3rem;
}

.cookie-item {
    background: #f9fafb;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .sales-grid,
    .business-grid,
    .personal-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .features-personal {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

/* Footer Logo Styles */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

/* Responsive footer logo */
@media (max-width: 768px) {
    .footer-logo-img {
        max-width: 100px;
    }
    
    .footer-logo {
        text-align: center;
    }
}
/* Subscribe Form Styles */
.subscribe-form {
    margin-top: 1rem;
}

.subscribe-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.subscribe-group input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.subscribe-group input:focus {
    outline: 2px solid #FFD700;
}

.subscribe-btn {
    background: #FFD700;
    color: #4A148C;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscribe-btn:hover {
    background: #DAA520;
    transform: translateY(-2px);
}

.subscribe-success {
    background: #d1fae5;
    color: #065f46;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
}

.subscribe-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #FFD700;
    color: #4A148C;
    transform: translateY(-3px);
}

/* Responsive subscribe form */
@media (max-width: 768px) {
    .subscribe-group {
        flex-direction: column;
    }
    
    .subscribe-btn {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }

}
/* gold-cards.css - Golden Frame Cards Styling */
.gold-cards-section {
    padding: 4rem 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #1f2937;
}

.gold-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.gold-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #FFD700;      /* Golden frame */
    box-shadow: 0 10px 25px -5px rgba(255, 215, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gold-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(255, 215, 0, 0.4);
    border-color: #DAA520;           /* Darker gold on hover */
}

.gold-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f3f4f6;
}

.gold-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gold-card:hover .gold-card-image img {
    transform: scale(1.03);
}

.gold-card-content {
    padding: 1.5rem;
    text-align: center;
}

.gold-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #B8860B;                /* Goldenrod heading */
    letter-spacing: -0.01em;
}

.gold-card-content p {
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.gold-btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #FFD700;
    color: #B8860B;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.gold-btn:hover {
    background: #FFD700;
    color: #1f2937;
    border-color: #DAA520;
}

@media (max-width: 768px) {
    .gold-cards-grid {
        gap: 1.5rem;
    }
    .gold-card-image {
        height: 180px;
    }
}