/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  color: #FFD700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Top Contact Bar */
.top-bar {
  background-color: #111;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.top-bar .left span {
  margin-right: 20px;
  color: #ccc;
}

.top-bar .right a {
  color: #FFD700;
  margin-left: 15px;
  font-size: 1.1rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid #FFD700;
  color: #FFD700;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-left: 10px;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 1rem;
}

.icon-btn:hover {
  background-color: #FFD700;
  color: #000;
}


/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  background-color: #000;
  border-bottom: 1px solid #222;
}

.branding {
  display: flex;
  align-items: center;
}

.logo {
  width: 60px;
  height: auto;
  margin-right: 15px;
}

.header h1 {
  font-size: 1.5rem;
  color: #fff;
}

.btn-outline {
  padding: 10px 20px;
  border: 1px solid #FFD700;
  color: #FFD700;
  background: transparent;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background-color: #FFD700;
  color: #000;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  background-color: #111;
  margin-bottom: 60px;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 20px;
}

.hero-text h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.hero-text p {
  color: #ccc;
  margin-bottom: 20px;
}

.hero-img {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 20px;
}

.hero-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  background-color: #111;
  border-top: 1px solid #333;
  padding: 10px 20px; /* Increased padding */
  max-width: 800px;
  margin: 40px auto 0 auto; /* 👈 Added top margin */
  min-height: 10vh; /* Makes it take up full viewport height */
  overflow-y: auto; /* Allows vertical scroll if needed */
}


.contact h2 {
  text-align: center;
  color: #FFD700;
  margin-bottom: 20px;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin-bottom: 15px;
  font-size: 1rem;
  word-break: break-word;
  color: #eee;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.contact-info .email {
  font-size: 1rem;
  color: #eee;
}

.contact-info .social-icons {
  display: flex;
  gap: 15px;
}



/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #777;
  background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    flex-direction: column;
  }

  .btn-outline {
    margin-top: 10px;
  }
}

/* Video Section */
.video-section {
  background-image: url('gold.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure full centering and remove shifting */
.video-container {
  max-width: 600px;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  outline: none;
}


/* Portrait Gallery Section */
.portrait-gallery {
  padding: 40px 20px;
  background-color: #000; /* Or match your theme */
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Desktop: 2 columns */
@media (min-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr 1fr;
  }
}



