/*
Theme Name: Abdulhameed Quarry
Theme URI: https://abdulhameedquarry.com
Author: Abdulhameed Quarry
Author URI: https://abdulhameedquarry.com
Description: Premium stone-inspired landing page theme for quarry and mining business with modern bento-style layout
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abdulhameed-quarry
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-width-template, theme-options
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #1a1a1a;
  --stone-grey: #2d2d2d;
  --medium-grey: #404040;
  --light-grey: #666666;
  --metallic: #8c8c8c;
  --accent: #a89968;
  --white: #ffffff;
  --off-white: #f5f5f5;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--charcoal);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.app-container {
  width: 100%;
  min-height: 100vh;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(140, 140, 140, 0.1);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--off-white);
  cursor: pointer;
  font-size: 24px;
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background-color: var(--stone-grey);
  border-top: 1px solid rgba(140, 140, 140, 0.2);
}

.mobile-menu a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(140, 140, 140, 0.1);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--stone-grey) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1551458601-14e8150ece4b?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NTY2Nzd8MHwxfHNlYXJjaHwxfHxzdG9uZSUyMHF1YXJyeXxlbnwwfHx8fDE3NjM3NTA2MDJ8MA&ixlib=rb-4.1.0&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 153, 104, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  color: var(--metallic);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--off-white);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background-color: var(--accent);
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 153, 104, 0.4);
}

/* Section Containers */
.section-container {
  padding: 6rem 2rem;
  background-color: var(--charcoal);
}

.section-dark {
  background-color: var(--stone-grey);
}

.section-content {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 0 auto;
}

/* About Section - Bento Grid */
.bento-grid-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--medium-grey) 0%, var(--stone-grey) 100%);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(140, 140, 140, 0.2);
  backdrop-filter: blur(12px);
}

.about-card-large h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-card-large p {
  color: var(--off-white);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-card {
  background: rgba(64, 64, 64, 0.5);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(140, 140, 140, 0.15);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.about-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--metallic);
  line-height: 1.7;
}

/* Materials Section - Bento Grid */
.bento-grid-materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.material-card {
  background: rgba(26, 26, 26, 0.6);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(140, 140, 140, 0.15);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(168, 153, 104, 0.2);
}

.material-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.material-card p {
  color: var(--metallic);
  line-height: 1.7;
}

/* Services Section - Bento Grid */
.bento-grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(135deg, var(--medium-grey) 0%, rgba(64, 64, 64, 0.5) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(140, 140, 140, 0.2);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: var(--charcoal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--metallic);
  line-height: 1.7;
}

/* Machinery Section */
.machinery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.machinery-main {
  background: linear-gradient(135deg, var(--stone-grey) 0%, var(--medium-grey) 100%);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(140, 140, 140, 0.2);
}

.machinery-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.machinery-main p {
  color: var(--off-white);
  line-height: 1.8;
}

.machinery-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.machinery-item {
  background: rgba(64, 64, 64, 0.5);
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(140, 140, 140, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.machinery-item:hover {
  transform: translateX(10px);
}

.machinery-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.machinery-item span {
  color: var(--off-white);
  font-weight: 500;
}

/* Licenses Section */
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.license-card {
  background: linear-gradient(135deg, var(--medium-grey) 0%, var(--stone-grey) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(140, 140, 140, 0.2);
  transition: transform 0.3s ease;
}

.license-card:hover {
  transform: translateY(-5px);
}

.license-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.license-card p {
  color: var(--metallic);
  line-height: 1.7;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

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

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

/* Location Section */
.location-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(140, 140, 140, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.location-info {
  background: linear-gradient(135deg, var(--medium-grey) 0%, var(--stone-grey) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(140, 140, 140, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.location-info p {
  color: var(--off-white);
  line-height: 1.8;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-section h3,
.contact-form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(140, 140, 140, 0.15);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item svg,
.contact-item .icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
  width: 24px;
  height: 24px;
}

.contact-item h4 {
  font-family: 'Playfair Display', serif;
  color: var(--off-white);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--metallic);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(140, 140, 140, 0.2);
  border-radius: 12px;
  color: var(--off-white);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(26, 26, 26, 0.8);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--light-grey);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  padding: 1rem 2rem;
  background-color: var(--accent);
  color: var(--charcoal);
  border: none;
  border-radius: 50px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 153, 104, 0.4);
}

/* Footer */
.site-footer {
  background-color: var(--stone-grey);
  border-top: 1px solid rgba(140, 140, 140, 0.2);
  padding: 2.5rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  color: var(--metallic);
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .bento-grid-about {
    grid-template-columns: 1fr;
  }

  .about-card-large {
    grid-column: span 1;
  }

  .machinery-grid {
    grid-template-columns: 1fr;
  }

  .location-container {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 4rem 1.5rem;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 6rem 1.5rem;
  }

  .nav-content {
    padding: 1rem 1.5rem;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .bento-grid-materials,
  .bento-grid-services,
  .licenses-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-card-large,
  .machinery-main,
  .location-info {
    padding: 2rem;
  }

  .material-card,
  .service-card,
  .license-card {
    padding: 2rem;
  }
}
.license-download-btn{
	color: #faebd7;
}