/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

body {
  font-family: 'Ubuntu', sans-serif;
  color: #000;
  line-height: 1.6;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Colors */
:root {
  --yellow: #FFD700;
  --red: #C00;
  --black: #000;
  --white: #fff;
}

/* Header & Navigation */
.header {
  background-color: var(--black);
  color: var(--yellow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Ubuntu', serif;
  font-size: 1.8rem;
  color: var(--yellow);
}

.nav a {
  color: var(--red);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--white);
}

/* Dropdown Nav Styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle-bar {
  width: 28px;
  height: 4px;
  background: var(--yellow);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nav {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--black);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    min-width: 180px;
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    margin: 10px 20px;
    font-size: 1.1rem;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('bkrpic.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Ubuntu', serif;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn {
  background-color: var(--red);
  color: var(--black);
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background-color: rgba(255, 0, 0, 0.776);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  
}

.btn-outline:hover {
  background-color: var(--red);
  color: var(--white);
}

/* General Section Styling */
.section {
  padding: 80px 0;
  text-align: center;
}

.section h2 {
  font-family: 'Ubuntu', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

/* About Section */
.about {
  background-color: var(--white);
  color: var(--black);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Products Section */
.products {
  background-color: var(--yellow);
  color: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
h5{
    color: #C00;
    font-size: 1.6rem;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
}

.product-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
  color: var(--black);
}

/* Partnership Section */
.partnership {
  background-color: var(--black);
  color: var(--white);
}

.partnership p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.partner-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.option {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.option h3 {
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  background-color: var(--white);
  color: var(--black);
}

.contact p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

#contact-form button {
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--yellow);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--yellow);
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }

  .nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  .about-content, .partner-options {
    flex-direction: column;
  }
  .hero{
    height: 300px;
  }
}