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

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --light-gold: #FFF8DC;
    --dark-text: #000000;
    --light-text: #333333;
    --bg-light: #FFFFFF;
    --bg-cream: #FFF5E6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--bg-light);
}

h1,
h2,
h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    min-height: auto;
    padding: 8rem 2rem 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="blur"><feGaussianBlur stdDeviation="50"/></filter></defs><rect width="1200" height="800" fill="%23FFF5E6"/><circle cx="300" cy="200" r="150" fill="%23FFD700" opacity="0.2" filter="url(%23blur)"/><circle cx="900" cy="600" r="200" fill="%23FFA500" opacity="0.15" filter="url(%23blur)"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}



.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Logo */
.logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 120px;
    height: auto;
}

/* Section Styles */
section {
    padding: 4rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Our Story Section - Removed */

/* Products Section */
.products {
    background-color: var(--bg-light);
}

.products h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.product-card::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: "Free Engraving";
    position: absolute;
    top: 30px;
    right: -100px;
    background: #ff0000;
    color: white;
    padding: 8px 50px;
    font-weight: bold;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    width: 200px;
}

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

.product-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 215, 0, 0.9);
    color: var(--dark-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-text);
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-30%, -30%) rotate(180deg);
    }
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info a {
    color: var(--dark-text);
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem 1rem;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.contact-info a:hover {
    opacity: 0.7;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: var(--bg-light);
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Coming Soon Product Styles */
.product-card.coming-soon {
    pointer-events: none;
    cursor: not-allowed;
}

.product-card.coming-soon .product-image::before {
    content: "Coming Soon";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-card.coming-soon .product-image img {
    filter: grayscale(100%) brightness(0.5);
}

.product-card.coming-soon .product-info {
    opacity: 0.6;
}

.product-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-card.coming-soon::before {
    display: none;
}