html {
  scroll-padding-top: 80px;
}

/* Custom CSS (Updated) */
body {
    font-family: 'Open Sans', sans-serif;
    padding-top: 70px;
}

/* Hero Section */
.hero-section {
    background: url('world.png') no-repeat center center/cover;
    min-height: 80vh;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    padding: 100px 0;
}

.hero-logo {
    max-width: 360px;
    width: 100%;
    height: auto;
}

.hero-section h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.hero-section p.lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* About Section */
.profile-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #FFD700;
}

#about p {
    margin-bottom: 1rem;
}

/* Products Table */
.table th, .table td {
    vertical-align: middle;
    text-align: center;
}

.table-dark th {
    background-color: #001f3f;
    color: #FFD700;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Contact Section */
.contact-info li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info i {
    color: #FFD700;
    width: 20px;
}

.contact-info a {
    color: #FFD700;
    text-decoration: underline;
}

.map-container {
    border: 2px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
}

/* Buttons */
.btn-primary {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #001f3f;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e0b300;
    border-color: #e0b300;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p.lead {
        font-size: 1.2rem;
    }

    .profile-pic {
        width: 150px;
        height: 150px;
    }
}
