/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-color: #ffffff;
    --secondary-text: #a0a0a0;
    --background-color: #121212;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-color);
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #e5c04c;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.product-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
}

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

/* Story Section */
.story {
    padding: 6rem 2rem;
    background-color: var(--background-color);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story p {
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

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

.testimonial-text {
    font-style: italic;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Invest Section */
.invest {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
}

.invest h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.invest-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.invest-info ul {
    list-style: none;
    margin-top: 2rem;
}

.invest-info li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.invest-info li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-color);
    border-radius: 4px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--background-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--secondary-text);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.social-icon {
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.5rem;
}

.social-icon i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

.social-icon:hover i {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--secondary-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .product-grid,
    .invest-content {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-item,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Animation for philosophy items */
.philosophy-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.philosophy-item:nth-child(2) {
    animation-delay: 0.2s;
}

.philosophy-item:nth-child(3) {
    animation-delay: 0.4s;
}

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