/* 
 * Bell & Bell Unlimited LLC - Simplified Styles
 * A lightweight CSS file for better compatibility with cPanel
 */

/* Base Styles */
:root {
  --gold: #d4af37;
  --dark: #222;
  --darker: #111;
  --light: #fff;
  --gray: #ccc;
  --light-gray: #f5f5f5;
  --medium-gray: #888;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--dark);
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--light);
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #c19b2a;
}

/* Header */
.site-header {
  background-color: var(--darker);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--gold);
}

.logo h1 span {
  color: var(--light);
  font-weight: 300;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  color: var(--light);
  font-weight: 300;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  position: relative;
  color: var(--light);
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* For mobile devices */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--dark);
}

.card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--medium-gray);
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--dark);
  color: var(--light);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid var(--gold);
  color: var(--light);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--gold);
  color: var(--darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.gallery-caption p {
  color: var(--light);
  font-size: 0.9rem;
  margin: 0;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--light);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about h3 {
  color: var(--gold);
  margin-top: 2rem;
}

.about p {
  color: var(--medium-gray);
}

/* Values Section */
.values {
  padding: 5rem 0;
  background-color: var(--dark);
  color: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.3s;
}

.value-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-item h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--gray);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.testimonial {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-info h4 {
  margin: 0;
  color: var(--dark);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  font-style: normal;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--light);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info p {
  margin-bottom: 2rem;
  color: var(--medium-gray);
}

.contact-details div {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-details i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 1.5rem;
}

.contact-details a {
  color: var(--medium-gray);
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-form {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.site-footer {
  background-color: var(--darker);
  color: var(--gray);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h3,
.footer-social h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: var(--gold);
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-filter {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 200px;
  }
}
