/* AK Supplies - Unified Stylesheet */

/* Reset and Base Styles - Universal reset and body styling */
* {
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    box-sizing: border-box; /* Include padding and border in element width */
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif; /* Set font family */
    line-height: 1.6; /* Set line height */
    color: #262322; /* Set text color */
    background-color: #B7B9C9; /* Set background color */
}

/* Navigation Bar - Sticky navigation bar styling */
nav {
    background-color: #765256; /* Set background color */
    padding: 1rem 0; /* Set vertical padding */
    position: sticky; /* Make nav stick to top when scrolling */
    top: 0; /* Position at top of viewport */
    z-index: 1000; /* Set stacking order */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow */
}

nav .container {
    max-width: 1200px; /* Set max width */
    margin: 0 auto; /* Center horizontally */
    display: flex; /* Use flexbox layout */
    justify-content: space-between; /* Space items apart */
    align-items: center; /* Center items vertically */
    padding: 0 2rem; /* Set horizontal padding */
}

.logo {
    font-size: 1.8rem; /* Set font size */
    font-weight: bold; /* Set font weight */
    color: #ffffff; /* Set text color */
    text-decoration: none; /* Remove underline */
    letter-spacing: 2px; /* Set letter spacing */
}

nav ul {
    list-style: none; /* Remove list bullets */
    display: flex; /* Use flexbox layout */
    gap: 2rem; /* Set gap between items */
}

nav ul li a {
    color: #ffffff; /* Set text color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem; /* Set font size */
    transition: color 0.3s ease; /* Add color transition */
    padding: 0.5rem 1rem; /* Set padding */
    border-radius: 4px; /* Set border radius */
}

nav ul li a:hover {
    color: #B28996; /* Set hover text color */
    background-color: rgba(255, 255, 255, 0.1); /* Set hover background */
}

/* Container - Main content container */
.container {
    max-width: 1200px; /* Set max width */
    margin: 0 auto; /* Center horizontally */
    padding: 2rem; /* Set padding */
}

/* Hero Section - Main banner section */
.hero {
    background: linear-gradient(135deg, #9595A9 0%, #B28996 100%); /* Set gradient background */
    color: #ffffff; /* Set text color */
    padding: 4rem 2rem; /* Set padding */
    text-align: center; /* Center text */
    margin-bottom: 3rem; /* Set bottom margin */
}

.hero h1 {
    font-size: 3rem; /* Set font size */
    margin-bottom: 1rem; /* Set bottom margin */
}

.hero p {
    font-size: 1.2rem; /* Set font size */
    margin-bottom: 2rem; /* Set bottom margin */
}

.cta-button {
    display: inline-block; /* Set display type */
    background-color: #B28996; /* Set background color */
    color: #262322; /* Set text color */
    padding: 1rem 2rem; /* Set padding */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Set border radius */
    font-weight: bold; /* Set font weight */
    transition: background-color 0.3s ease; /* Add background transition */
}

.cta-button:hover {
    background-color: #765256; /* Set hover background color */
}

/* Section Headings - Page section title styling */
.section-title {
    text-align: center; /* Center text */
    font-size: 2.5rem; /* Set font size */
    margin-bottom: 3rem; /* Set bottom margin */
    color: #262322; /* Set text color */
}

/* Product Grid - Product card grid layout */
.product-grid {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(3, 1fr); /* Set 3 columns for even distribution */
    gap: 2rem; /* Set gap between items */
    margin: 0 3rem 3rem 3rem; /* Set margins: top, right, bottom, left */
}

.product-card {
    background: #B7B9C9; /* Set background color */
    border-radius: 8px; /* Set border radius */
    overflow: hidden; /* Hide overflow */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transitions */
}

.product-card:hover {
    transform: translateY(-5px); /* Move up on hover */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); /* Increase shadow on hover */
}

.product-image {
    width: 100%; /* Set full width */
    height: 300px; /* Set height */
    overflow: hidden; /* Hide overflow */
    background: linear-gradient(135deg, #9595A9 0%, #B28996 100%); /* Set gradient background */
    display: flex; /* Use flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    color: #ffffff; /* Set text color */
    font-size: 1.2rem; /* Set font size */
}

.product-image img {
    width: 100%; /* Set full width */
    height: 100%; /* Set full height */
    object-fit: contain; /* Scale image to be fully contained in container */
}

.product-info {
    padding: 1.5rem; /* Set padding */
}

.product-info h3 {
    margin-bottom: 0.5rem; /* Set bottom margin */
    color: #262322; /* Set text color */
}

.product-info p {
    color: #262322; /* Set text color */
    margin-bottom: 1rem; /* Set bottom margin */
}

.product-price {
    font-size: 1.5rem; /* Set font size */
    font-weight: bold; /* Set font weight */
    color: #262322; /* Set text color */
}

/* About Section - About page content styling */
.about-content {
    background: #B7B9C9; /* Set background color */
    padding: 2rem; /* Set padding */
    border-radius: 8px; /* Set border radius */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow */
    margin-bottom: 2rem; /* Set bottom margin */
}

.about-content p {
    margin-bottom: 1rem; /* Set bottom margin */
    font-size: 1.1rem; /* Set font size */
}

/* Product Table - Small accessible table for product listing */
.product-table {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #B7B9C9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-table th {
    background-color: #765256;
    color: #ffffff;
    padding: 0.75rem;
    text-align: left;
    font-weight: bold;
    font-size: 0.95rem;
}

.product-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid rgba(118, 82, 86, 0.2);
    color: #262322;
}

.product-table tbody tr:hover {
    background-color: rgba(178, 137, 150, 0.2);
}

.product-table tbody tr:last-child td {
    border-bottom: none;
}

/* Collections Grid - Collection card grid layout */
.collections-grid {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(3, 1fr); /* Set 3 columns for even distribution */
    gap: 2rem; /* Set gap between items */
    margin: 0 3rem 3rem 3rem; /* Set margins: top, right, bottom, left */
}

.collection-card {
    background: #B7B9C9; /* Set background color */
    border-radius: 8px; /* Set border radius */
    overflow: hidden; /* Hide overflow */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow */
    transition: transform 0.3s ease; /* Add transform transition */
}

.collection-card:hover {
    transform: scale(1.05); /* Scale up on hover */
}

.collection-image {
    width: 100%; /* Set full width */
    height: 300px; /* Set height */
    overflow: hidden; /* Hide overflow */
    background: linear-gradient(135deg, #9595A9 0%, #765256 100%); /* Set gradient background */
    display: flex; /* Use flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    color: #ffffff; /* Set text color */
    font-size: 1.5rem; /* Set font size */
    font-weight: bold; /* Set font weight */
}

.collection-image img {
    width: 100%; /* Set full width */
    height: 100%; /* Set full height */
    object-fit: contain; /* Scale image to be fully contained in container */
}

.collection-info {
    padding: 1.5rem; /* Set padding */
    text-align: center; /* Center text */
}

.collection-info h3 {
    margin-bottom: 0.5rem; /* Set bottom margin */
    color: #262322; /* Set text color */
}

/* Contact Form - Contact page form styling */
.contact-container {
    background: #B7B9C9; /* Set background color */
    padding: 2rem; /* Set padding */
    border-radius: 8px; /* Set border radius */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow */
    max-width: 600px; /* Set max width */
    margin: 0 auto; /* Center horizontally */
}

.contact-form {
    display: flex; /* Use flexbox layout */
    flex-direction: column; /* Stack items vertically */
    gap: 1rem; /* Set gap between items */
}

.contact-form label {
    font-weight: bold; /* Set font weight */
    color: #262322; /* Set text color */
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem; /* Set padding */
    border: 1px solid #B7B9C9; /* Set border */
    border-radius: 4px; /* Set border radius */
    font-size: 1rem; /* Set font size */
    font-family: inherit; /* Inherit font family */
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 150px; /* Set minimum height */
}

.contact-form button {
    background-color: #B28996; /* Set background color */
    color: #262322; /* Set text color */
    padding: 1rem; /* Set padding */
    border: none; /* Remove border */
    border-radius: 4px; /* Set border radius */
    font-size: 1rem; /* Set font size */
    font-weight: bold; /* Set font weight */
    cursor: pointer; /* Set cursor type */
    transition: background-color 0.3s ease; /* Add background transition */
}

.contact-form button:hover {
    background-color: #765256; /* Set hover background color */
}

.contact-info {
    margin-top: 2rem; /* Set top margin */
    text-align: center; /* Center text */
    padding: 1.5rem; /* Set padding */
    background: #B7B9C9; /* Set background color */
    border-radius: 8px; /* Set border radius */
}

.contact-info h3 {
    margin-bottom: 1rem; /* Set bottom margin */
    color: #262322; /* Set text color */
}

.contact-info p {
    margin-bottom: 0.5rem; /* Set bottom margin */
    color: #262322; /* Set text color */
}

.iframe-container {
    margin: 0 auto; /* Center horizontally */
    width: 100%; /* Set full width */
    height: 500px; /* Set height */
    overflow: hidden; /* Hide overflow */
    background-color: #9595A9; /* Set gradient background */
    position: relative; /* Position context for floating elements */
    padding: 2rem; /* Set padding */
    display: flex; /* Use flexbox */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.iframe-wrapper {
    display: inline-block; /* Make wrapper inline-block for centering */
    position: relative; /* Position context */
}

.coming-soon-text {
    float: right; /* Float text to the right, adjacent to iframe */
    color: #262322; /* Set text color - Primary Text Color */
    font-size: 1.5rem; /* Set font size */
    font-weight: bold; /* Set font weight */
    margin: 1rem; /* Set margin */
    padding: 1rem; /* Set padding */
    background-color: #B28996; /* Set background - Rose Accent */
    border-radius: 8px; /* Set border radius */
    clear: none; /* Allow floating */
}

.iframe-wrapper iframe {
    float: left; /* Float iframe to the left */
    margin: 1rem; /* Set margin */
    clear: none; /* Allow floating */
}

/* Footer - Footer section styling */
footer {
    background-color: #765256; /* Set background color */
    color: #ffffff; /* Set text color */
    text-align: center; /* Center text */
    padding: 2rem; /* Set padding */
    margin-top: 4rem; /* Set top margin */
}

footer p {
    margin: 0.5rem 0; /* Set vertical margins */
}

footer a {
    color: #ffffff; /* Set link color */
    text-decoration: none; /* Remove underline */
}

footer a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column; /* Stack items vertically */
        gap: 1rem; /* Set gap between items */
    }

    nav ul {
        flex-direction: column; /* Stack items vertically */
        gap: 0.5rem; /* Set gap between items */
        width: 100%; /* Set full width */
    }

    nav ul li {
        width: 100%; /* Set full width */
        text-align: center; /* Center text */
    }

    .hero h1 {
        font-size: 2rem; /* Set font size */
    }

    .hero p {
        font-size: 1rem; /* Set font size */
    }

    .product-grid {
        grid-template-columns: 1fr; /* Set single column */
        margin: 0 1rem 3rem 1rem; /* Set margins: top, right, bottom, left */
    }

    .collections-grid {
        grid-template-columns: 1fr; /* Set single column */
        margin: 0 1rem 3rem 1rem; /* Set margins: top, right, bottom, left */
    }
}

/* Tablet responsive styles - 2 columns for medium screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Set 2 columns for tablets */
        margin: 0 2rem 3rem 2rem; /* Set margins: top, right, bottom, left */
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr); /* Set 2 columns for tablets */
        margin: 0 2rem 3rem 2rem; /* Set margins: top, right, bottom, left */
    }
}
