@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.hamburger-wrapper {
  cursor: pointer;
  z-index: 1100;
}

.hamburger {
  width: 28px;
  height: auto;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  transition: right 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 1.5rem 0;
}

.mobile-menu ul li a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #FF6500;
}

.mobile-menu.show {
  right: 0;
}

/* About Section - New Layout */
.about-section {
  padding: 7rem 2rem 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}


/* Left Side - Image Box */
.about-image {
  flex: 1 1 350px;
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 30px rgba(255,255,255,0.08);
  text-align: center;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image .name {
  color: #000;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Right Side - Text */
.about-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.about-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}
