/* Color Variables */
:root {
    --primary-light-blue: #4FC3F7; /* Main light blue color */
    --primary-dark-blue: #0288D1;  /* Darker blue for contrast */
    --accent-color: #FFA726;       /* Orange accent color */
    --light-gray: #f5f7f9;         /* Light background */
    --text-dark: #333333;          /* Dark text */
    --text-light: #ffffff;         /* Light text */
    --footer-bg: #0277BD;          /* Darker blue for footer */
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top Bar Styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    font-size: 14px;
}

.top-bar .left span {
    margin-right: 20px;
}

.top-bar .left i {
    margin-right: 5px;
}

.top-bar .left a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .left a:hover {
    color: var(--accent-color);
}

.social-media a {
    color: var(--text-light);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-dark-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-dark-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact {
    display: flex;
    align-items: center;
    list-style: none;
}

.contact-btn {
    background-color: var(--primary-light-blue);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-dark-blue);
}

/* Container Styles */
.container {
    position: relative;
    background: url('../images/bg-export.jpg') no-repeat center center;
    background-size: cover;
    min-height: 600px;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.tagline {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #333;
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.explore-text {
    color: #4a90e2;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.content-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: #4a90e2;
    border: none;
    margin: 0 auto 25px;
}

.content-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.order-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn:hover {
    background-color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.order-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design for Container */
@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }
    
    .content-box {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .content-box h1 {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 15px;
    }
    
    .content-box {
        padding: 25px 15px;
    }
    
    .content-box h1 {
        font-size: 24px;
    }
    
    .explore-text {
        font-size: 14px;
    }
    
    .order-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 50px 5% 30px;
}

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

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

.footer-column h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer .social-media {
    margin-top: 20px;
}

.footer .social-media a {
    color: var(--text-light);
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .social-media a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav-links {
        margin-bottom: 15px;
    }
    
    .nav-links li {
        margin: 5px 10px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}
