/*
Theme Name: Container Solutions
Theme URI: https://www.yourdomain.com
Author: Your Name
Author URI: https://www.yourdomain.com
Description: A professional container solutions theme based on gkcontainer.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: container-solutions
*/

/* Header Styles */
header {
    background-color: #003366;
    color: white;
    padding: 1rem 0;
}

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

.logo {
    float: left;
    font-size: 1.5rem;
    font-weight: bold;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://i0.wp.com/www.gkcontainer.com/wp-content/uploads/2019/12/slider-2-1.png?fit=1920%2C747&ssl=1') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

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

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #005599;
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    color: #003366;
}

/* Products Section */
.products {
    padding: 50px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #003366;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.product {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #003366;
}

/* News Section */
.news {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.news h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #003366;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.news-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-item h3 {
    margin-bottom: 10px;
    color: #003366;
}

.news-item .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* Clearfix */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo, nav {
        float: none;
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

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