/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  max-width: 400px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* CATEGORIES */
.categories {
  padding: 60px 40px;
  text-align: center;
}

.categories h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.tile-item {
  text-align: center;
  flex: 1;
  min-width: 300px;
}

.tile-item img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.tile-label {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  font-family: 'Georgia', serif;
}



/* TILE SIZES SECTION */
.tile-sizes-table {
  padding: 60px 40px;
  background: #fff;
}

.tile-sizes-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.tile-sizes-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.tile-sizes-right img {
  max-width: 550px;
  border-radius: 15px;
}

.tile-sizes-table h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.tile-sizes-table p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.tile-sizes-table table {
  margin: 0 auto 40px;
  border-collapse: collapse;
  width: 300px;
}

.tile-sizes-table th,
.tile-sizes-table td {
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 1.05rem;
  color: #333;
}

.tile-sizes-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* EXPLORE BUTTONS */
.explore-buttons {
  margin-top: 20px;
}

.explore-buttons h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.explore-link {
  display: inline-block;
  background: #0077cc;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  margin: 0 10px;
  font-weight: bold;
  transition: background 0.3s;
}

.explore-link:hover {
  background: #005fa3;
}

/* WHY CHOOSE SECTION */
.why-devshree-full {
  padding: 60px 40px;
  background-color: #fff;
  text-align: center;
}

.why-devshree-full h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 20px;
}

.why-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

.why-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.highlight-box img {
  height: 60px;
  margin-bottom: 15px;
}

.highlight-box h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 0.95rem;
  color: #555;
}

/* TILE COLLECTION PAGES (300x600, 600x600, 600x1200) */
.tile-collections {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.tile-collections h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.collection-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  width: 260px;
  padding: 20px;
  transition: transform 0.3s ease;
}

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

.collection-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.collection-card h3 {
  font-size: 1.1rem;
  margin: 15px 0 5px;
}

.collection-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.collection-card .explore-link {
  display: inline-block;
  padding: 8px 16px;
}

/* DROPDOWN FOR PDFs */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  min-width: 180px;
  z-index: 100;
}

.dropdown-content a {
  color: #333;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* CONTACT */
.contact-footer {
  background: #fafafa;
  padding: 60px 30px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  text-align: left;
  min-width: 250px;
}

.contact-card img {
  max-width: 300px;
  border-radius: 8px;
}

.contact-footer h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-footer p {
  font-size: 1.1rem;
  margin: 10px 0;
}

.contact-footer a {
  color: #0077cc;
  text-decoration: none;
}

.contact-footer a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: white;
  font-size: 0.9rem;
}

/* CONTACT SECTION LAYOUT */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-info {
  flex: 1;
}

.contact-card {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-card img {
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tile Collections Section */
.tile-collections {
  padding: 60px 40px;
  text-align: center;
  background-color: #fff;
}

.tile-collections h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

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

.collection-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.collection-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.collection-card h3 {
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
}

.collection-card .explore-link {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 20px;
  background: #0077cc;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.collection-card .explore-link:hover {
  background: #005fa3;
}
.collection-note {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}
.dropdown-note {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
/* Header with logo */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
}

/* Logo + Text */
.logo-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 15px;
}

/* Logo Styling - Larger and pops out */
.site-logo {
  height: 75px;
  width: 75px;
  object-fit: contain;
  margin-left: -10px;
  position: relative;
  top: 5px; /* Move logo slightly down */
}


/* Logo Text */
.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}

/* Navigation */
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #7a00cc;
}


/* Surface Collection Gallery */
.surface-collection {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.surface-collection h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px; /* spacing between images */
}

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

.gallery img:hover {
  transform: scale(1.05); /* hover zoom effect */
}
