/* Base Styles */
:root {
    --primary-color: #004E64;
    /* Deep Ocean Blue */
    --accent-color: #25A9E0;
    /* Fresh Blue */
    --highlight-color: #FF7F50;
    /* Coral */
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Utilities */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    height: 3px;
    width: 80px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section {
    padding: 5rem 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.nav-logo {
    height: 90px;
    /* Increased size */
    width: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Added shadow for visibility */
    padding: 2px;
    /* Slight padding inside border */
}

.nav-logo:hover {
    transform: scale(1.1);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(37, 169, 224, 0.4);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.btn-contact {
    border: 1px solid var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

.btn-contact:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 78, 100, 0.4), rgba(0, 78, 100, 0.6)), url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.features-list i {
    color: var(--accent-color);
}

.about-image-placeholder {
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    position: relative;
}

.placeholder-content {
    text-align: center;
    color: #aaa;
}

.placeholder-content i {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* Products Section */
.products-section {
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    /* Increased height for better visibility */
    background-color: var(--white);
    /* White background for clean product look */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Quality Section */
.quality-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.quality-content {
    max-width: 800px;
    margin: 0 auto;
}

.quality-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.badge {
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
    text-transform: uppercase;
    transition: var(--transition);
}

.badge:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--highlight-color);
    width: 24px;
    height: 24px;
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background-color: #002b36;
    color: #aaa;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Branded Package Styles - Premium Slate Look */
.branded-package {
    position: relative;
    background-color: #1a1a1a;
    background-image: radial-gradient(circle at center, #2c3e50 0%, #000000 100%);
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
    /* Removing padding to let image fill or adapt */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.branded-package .main-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transform: scale(0.95);
    /* Slight inset */
    border-radius: 5px;
}

/* Vacuum Pack Overlay */
.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.package-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0.3) 100%);
    opacity: 0.6;
    mix-blend-mode: screen;
}

/* Paper Label at Bottom */
.package-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* Specific height for the band */
    background: #f0ead6;
    /* Eggshell/Paper color */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Space out logo and text */
    padding: 0 20px;
    z-index: 3;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.label-text {
    font-family: 'Playfair Display', serif;
    color: #b8860b;
    /* Gold color */
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-logo {
    height: 40px;
    width: 40px !important;
    /* Override other img styles */
    object-fit: contain;
}