/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #c0c0c0;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: #c0c0c0;
  color: #000;
}

.btn-secondary {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: relative;
  min-height: 60vh;
  background-color: #c0c0c0;
  padding: 56px 0;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/header-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.header-content {
  position: relative;
  z-index: 1;
}

.header-top {
  background-color: transparent;
  padding: 12px 24px;
  text-align: center;
}

.logo-container {
  display: inline-block;
}

.logo {
  max-height: 200px;
  width: auto;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.15);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
}

.hero-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 60px 80px;
  text-align: center;
  max-width: 600px;
  border-radius: 50%;
  width: 550px;
  height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
}

.sub-tagline {
  margin-bottom: 24px;
  line-height: 1.8;
}

.sub-tagline p {
  margin-bottom: 8px;
}

/* Gallery */
.gallery {
  background-color: #c0c0c0;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
}

.gallery-item {
  flex: 1;
  min-width: 25%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* About Section */
.about {
  background-color: #c0c0c0;
  padding: 56px 0;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  min-height: 30vh;
}

.about-content {
  flex: 1;
  max-width: 320px;
  padding: 40px;
}

.about-content h2 {
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
}

.platform-list {
  margin-top: 16px;
}

.platform-list li {
  margin-bottom: 8px;
  color: #333;
}

.about-image {
  flex: 1;
  min-width: 300px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.about-image img {
  width: 100%;
  object-fit: cover;
}

/* Content Section */
.content-section {
  background-color: #c0c0c0;
  padding: 56px 0;
}

.content-image {
  text-align: center;
  margin-bottom: 40px;
}

.content-image img {
  max-width: 100%;
  height: auto;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  font-family: 'Gentium Basic', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.section-title.centered {
  margin-bottom: 32px;
}

.title-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: #666;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.content-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 24px;
}

.content-card.bordered {
  border: 1px solid #999;
  background-color: rgba(255, 255, 255, 0.1);
}

.content-card h3 {
  font-size: 30px;
  margin-bottom: 24px;
  font-weight: 700;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 16px;
  line-height: 1.6;
}

.content-card .btn {
  margin-top: 24px;
}

/* Contact Section */
.contact {
  background-color: #c0c0c0;
  padding: 56px 0;
  border-top: 1px solid #aaa;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h4 {
  font-size: 22px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #999;
  background-color: #fff;
  font-family: inherit;
  font-size: 16px;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #666;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 16px;
}

.file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #333;
  text-decoration: underline;
}

.file-label svg {
  flex-shrink: 0;
}

.file-count {
  font-size: 12px;
  color: #666;
}

.form-notice {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.info-block ul {
  list-style: disc;
  padding-left: 20px;
}

.info-block li {
  margin-bottom: 4px;
}

.hours-table {
  border-spacing: 0;
  text-align: left;
}

.hours-table td {
  padding: 4px 24px 4px 0;
}

/* Subscribe Section */
.subscribe {
  position: relative;
  padding: 156px 0;
  color: #fff;
  text-align: center;
}

.subscribe-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/subscribe-bg.jpg');
  background-size: cover;
  background-position: center;
}

.subscribe-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.subscribe-content {
  position: relative;
  z-index: 1;
}

.subscribe h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 44px;
  margin-bottom: 16px;
}

.subscribe p {
  margin-bottom: 24px;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form .btn-primary {
  background-color: #c0c0c0;
  color: #000;
}

/* Footer */
.footer {
  background-color: #c0c0c0;
  padding: 40px 0;
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.copyright {
  font-size: 12px;
  color: #666;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.godaddy-logo {
  height: 20px;
  width: auto;
}

/* Responsive */
@media (max-width: 1023px) {
  .gallery-item {
    min-width: 50%;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 40px 0;
  }

  .hero {
    padding: 80px 16px;
  }

  .hero-box {
    width: 350px;
    height: 350px;
    padding: 30px;
  }

  .tagline {
    font-size: 28px;
  }

  .sub-tagline {
    font-size: 14px;
  }

  .logo {
    max-height: 110px;
  }

  .gallery-item {
    min-width: 50%;
    height: 150px;
  }

  .about-grid {
    flex-direction: column-reverse;
  }

  .about-content {
    padding: 24px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-image {
    min-height: 250px;
  }

  .section-title {
    font-size: 18px;
    flex-direction: column;
    gap: 12px;
  }

  .title-line {
    width: 100px;
  }

  .content-card h3 {
    font-size: 24px;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-info {
    text-align: center;
  }

  .hours-table {
    margin: 0 auto;
  }

  .subscribe h2 {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .gallery-item {
    min-width: 50%;
    height: 120px;
  }
}
