:root {
    --primary-color: #ffffff;
    --text-color: #333333;
    --accent-color: #d4af37;
    /* Gold-ish color for accents if needed */
    --top-bar-bg: transparent;
    /* Based on screenshot, top bar seems integrated */
    --overlay-color: rgba(0, 0, 0, 0.4);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--primary-color);
    background-color: #f4f4f4;
}

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

/* Background Image Handling */
.hero-section {
    position: relative;
    /* Placeholder background - ideally this should be the image from the screenshot */
    background: url('https://images.unsplash.com/photo-1512413914633-b5043f4041ea?q=80&w=2699&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align largely to top */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46, 50, 68, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Top Bar */
.top-bar {
    position: relative;
    z-index: 10;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i,
.social-icons i {
    margin-right: 8px;
}

.social-icons a {
    color: var(--primary-color);
    margin-left: 15px;
    text-decoration: none;
    font-size: 1rem;
}

/* Header */
.main-header {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-img {
    height: 80px;
    /* Adjust based on actual logo ratio */
    margin-right: 15px;
    border-radius: 4px;
    /* Optional */
}

.logo-text {
    text-align: left;
}

.logo-text h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.main-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    /* Looks like title case in screenshot, but common for nav */
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 100px;
    /* Push content down */
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Courier New', Courier, monospace;
    /* Monospace vibe from screenshot */
    font-size: 1.2rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        margin-top: 5px;
    }

    .main-header {
        padding-top: 10px;
    }

    .logo-container {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .logo-img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .logo-text {
        text-align: center;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* ... responsive styles ... */
    .hero-title {
        font-size: 2.5rem;
    }
}

/* General Section Styling */
.section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.section-content {
    color: var(--text-color);
    width: 100%;
    /* Allow full width for split layouts */
    margin: 0 auto;
}

/* Translucent Dark Card for About/Vedvit */
.dark-card {
    background: rgba(0, 0, 0, 0.6);
    /* Translucent dark background */
    padding: 40px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
    height: 100%;
}

.dark-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.dark-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #eee;
}

.dark-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #444;
}

.split-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img,
.placeholder-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.placeholder-img {
    background-color: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 500;
    border: 1px solid #ddd;
}

/* Card Grid for Kids/Products */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    /* Larger heading */
    margin-bottom: 15px;
    color: #222;
}

.info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Polished Button Style */
.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: #ffffff;
    /* Solid White */
    color: #000;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* Section Title Refinement */
.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    /* Larger */
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    font-weight: 400;
    /* Lighter elegant weight */
}

/* Refined Dark Card */
.dark-card {
    background: rgba(0, 0, 0, 0.75);
    /* Darker, more solid overlay */
    padding: 60px;
    /* More breathing room */
    border-radius: 0;
    /* Sharper corners as per some premium themes */
    color: #fff;
    box-shadow: none;
    /* Cleaner look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    /* Center align text in cards usually looks better */
    max-width: 900px;
    margin: 0 auto;
}

.dark-card h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    /* White title on dark card */
}

.dark-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ddd;
    font-weight: 300;
}

@media (max-width: 768px) {

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        text-align: center;
    }

    .split-layout {
        gap: 30px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}

.placeholder-box {
    margin-top: 30px;
    background-color: #ddd;
    height: 300px;
    /* Placeholder height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 2px dashed #aaa;
    border-radius: 8px;
}

/* Specific Section Colors */
.about-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('about.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.export-section {
    background-color: #f9f9f9;
}

.kids-section {
    background-color: #ffffff;
}

.it-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('vedvit.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* Footer Styling */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-family: var(--font-serif);
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-socials a {
    color: #fff;
    margin-right: 15px;
    margin-left: 0;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}