/* 
 * The Minty Cat - Ginger Beer Website Styles
 * Clean, professional styling with black, white, and gray color scheme
 */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Header Section */
.header {
    background: black;
    padding: 100px 0 80px;
    text-align: center;
}

.header .subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.header .tagline {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    background: white;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header img {
	width: 40%;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.bg-gray {
    background-color: #f8f8f8;
}

/* Brand Story Section */
.brand-story {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-story .highlight {
    background: #000;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Versions Grid */
.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.version-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.version-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.version-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.ingredients-list {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.ingredients-list ul {
    list-style: none;
    margin: 0;
}

.ingredients-list li {
    padding: 5px 0;
    font-weight: 600;
    color: #333;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    margin: 20px 0;
}

.image-placeholder i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    height: 500px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slide-caption {
	display: none;
    position: static;
    background: none;
    color: #333;
    padding: 15px 0 0 0;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background: rgba(0,0,0,0.5);
    border: none;
    user-select: none;
    transition: background 0.3s ease;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.highlight-box h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.highlight-box .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-box .feature {
    padding: 20px;
}

.highlight-box .feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.highlight-box .feature h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-box .feature p {
    color: #ccc;
    margin: 0;
}

/* Contact Button */
.contact-section {
    text-align: center;
    padding: 80px 0;
}

.btn-contact {
    display: inline-block;
    background: #000;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-contact:hover {
    background: #333;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-contact i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin: 0;
    color: #ccc;
}

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

    h2 {
        font-size: 2rem;
    }

    .header {
        padding: 80px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .versions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .version-card {
        padding: 30px 20px;
    }

    .highlight-box {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .highlight-box h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .header .subtitle {
        font-size: 1.2rem;
    }

    .header .tagline {
        font-size: 1rem;
        padding: 12px 20px;
    }
}