.social-links a.gmail {
  background: #ea4335;
}
.social-links a .fa-envelope {
  color: #fff !important;
}
/* ================================
   SONARAM TILE STUDIO - MAIN STYLES
   ================================ */

:root {
  --primary-color: #2c3e50;
  --accent-color: #e67e22;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --gold-color: #d4af37;
  --transition: all 0.3s ease-in-out;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* ================================
   NAVIGATION BAR
   ================================ */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  padding: 1rem 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 150px;
  border-radius: 4px;
  object-fit: contain;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.1);
}

.logo-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo-subtitle {
  color: var(--gold-color);
  font-size: 0.75rem;
  display: block;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

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

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

.nav-links a.active {
  color: var(--gold-color);
}

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

.cta-button {
  background: var(--accent-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.cta-button:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* ================================
   FLOATING ACTION BUTTON (FAB)
   ================================ */

.fab-button {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
  transition: var(--transition);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.fab-button:hover {
  background: #d35400;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.fab-button:active {
  transform: scale(0.95);
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  margin-top: 70px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(230, 126, 34, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: slideInUp 1s ease-out;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid white;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ================================
   MAIN CONTENT SECTIONS
   ================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-color);
}

/* ================================
   VISION STATEMENT SECTION
   ================================ */

.vision {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: white;
  text-align: center;
}

.vision .section-title {
  color: white;
}

.vision .section-title::after {
  background: var(--gold-color);
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out;
}

.vision-statement {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--gold-color);
  padding: 2rem;
  border-radius: 5px;
  font-style: italic;
}

/* ================================
   FEATURES SECTION
   ================================ */

.features {
  background: #f8f9f10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-text p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery {
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
  cursor: pointer;
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: white;
  text-align: center;
}

/* ================================
   FOOTER
   ================================ */

footer {
  background: var(--primary-color);
  color: #ecf0f1;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--gold-color);
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.contact-info {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--gold-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}



.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: var(--transition);
  color: #fff;
}

.social-links a .fab {
  color: #fff !important;
}

.social-links a.facebook {
  background: #1877f3;
}
.social-links a.instagram {
  background: linear-gradient(135deg, #ffdf9e 0%, #ffc273 25%, #e56969 50%, #c1558b 75%, #8a49a1 100%);
}
.social-links a.google {
  background: #ea4335;
}
.social-links a.whatsapp {
  background: #25d366;
}

.social-links a:hover {
  /* Only animate, no color change */
  transform: translateY(-3px) scale(1.08);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #bdc3c7;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   SCROLLING ANIMATION
   ================================ */

.fade-in-section {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--primary-color);
    padding: 2rem 0;
    gap: 1.5rem;
    z-index: 999;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1.5rem 2rem;
    border-bottom: none !important;
    text-align: center;
    width: 100%;
  }

  .nav-links a.active {
    color: var(--gold-color);
  }

  .nav-links a::after {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .fab-button {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    height: 400px;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-content {
    padding: 1rem;
  }

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

  section {
    padding: 2rem 0;
  }

  .btn-primary, .btn-secondary {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }
}
