@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #00000000;
    --text: #333;
    --bg: #fff;
    --container: min(1200px, 90%);
    --nav-height: 4rem;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --radius: 8px;
}

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

body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: url('assets/embossed.jpg') center/cover fixed no-repeat;
}

.container {
    width: var(--container);
    margin: 0 auto;
    padding: calc(var(--nav-height) * 1.5) 0 0;
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 5%;
}

.nav-content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.logo img { 
    height: 2rem; 
}

.logo-combined {
    color: var(--text);
    text-decoration: none;
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.company-name {
    font-size: 1.5rem; 
}

.nav-links { 
    display: flex; 
    gap: 1.5rem; 
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover, 
.nav-link.active { 
    text-decoration: underline;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.hero h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 1rem; 
}

.hero p { 
    font-size: 1.25rem; 
    margin-bottom: 2rem; 
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    margin: 0.5rem;
    transition: transform 0.2s, background 0.2s;
    box-shadow: var(--shadow);
    background: var(--bg);
}

.cta-button:hover { 
    transform: translateY(-2px); 
    text-decoration: underline;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.product-card:hover { 
    transform: translateY(-5px); 
}

.product-content { 
    padding: 1.5rem; 
    text-align: center; 
}

.product-content i { 
    color: var(--primary); 
    margin-bottom: 1rem; 
}

.price { 
    color: var(--primary); 
    font-weight: bold; 
    margin-top: 1rem; 
}

/* Order Page */
.order-container {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.order-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.order-image img {
    width: 100%;
    height: 40%;
    object-fit: cover;
    max-height: 800px;
}

.order-form {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.order-form iframe {
    width: 100%;
    height: 1100px;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.store-info {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.store-info i {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Contact Form */

.contact-form {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.contact-form iframe {
    width: 100%;
    height: 900px;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .order-container {
        flex-direction: column;
    }
    
    .order-image {
        max-height: 400px;
    }
    
    .order-form iframe {
        height: 600px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
    }
}

/* Reviews Container Styles */
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
    justify-content: space-between;
}

.review {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.review-author {
    font-weight: 600;
    color: #555;
    text-align: right;
    margin: 0;
}

.order-review {
    text-align: center;
    margin-top: 1.5rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review {
        width: 100%;
        min-width: 100%;
    }
}
