/* North Shore Ice Co. - Clean & Simple */

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal: #6ABFB5;
  --teal-dark: #5BA9A0;
  --teal-light: #8DD3CA;
  --cream: #FDF9F3;
  --white: #FFFFFF;
  --charcoal: #2C3E50;
  --slate: #5D6D7E;
  --sand: #E8E0D5;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
}

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

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

/* Navigation */
.navbar {
  background: var(--white);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Special Elite', cursive;
  font-size: 1.5rem;
  color: var(--teal);
  letter-spacing: 1px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Special Elite', cursive;
  color: var(--charcoal);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
}

.nav-cta:hover {
  background: var(--teal-dark);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--teal);
}

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--teal);
  padding: 120px 2rem 4rem;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tagline {
  font-family: 'Special Elite', cursive;
  color: rgba(255,255,255,0.8);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  font-family: 'Special Elite', cursive;
  font-size: 3rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-family: 'Special Elite', cursive;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-white {
  background: var(--white);
  color: var(--teal);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
}

.hero-social {
  display: flex;
  gap: 1.5rem;
}

.hero-social a {
  color: rgba(255,255,255,0.8);
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.hero-social a:hover {
  color: var(--white);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* Sections */
.section {
  padding: 5rem 2rem;
}

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

.section-header h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2.2rem;
  color: var(--charcoal);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.about-content p {
  color: var(--slate);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.feature-list li {
  color: var(--charcoal);
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '•';
  color: var(--teal);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Treats Section */
.treats-section {
  background: var(--cream);
}

.treats-grid-three {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.treat-card-three {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 0.9;
  max-width: 280px;
  margin: 0 auto;
}

.treat-card-three img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.treat-card-three:hover img {
  transform: scale(1.03);
}

.treat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}

.treat-info h3 {
  font-family: 'Special Elite', cursive;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.treat-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Events Section */
.events-section {
  background: var(--teal);
  padding: 0;
}

.events-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.events-image-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  padding: 2rem;
}

.events-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.events-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-text h2 {
  font-family: 'Special Elite', cursive;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.events-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.event-cta {
  background: rgba(255,255,255,0.15);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.call-text {
  color: rgba(255,255,255,0.9);
  font-family: 'Special Elite', cursive;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.phone-number {
  font-family: 'Special Elite', cursive;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
  display: block;
}

.phone-number:hover {
  text-decoration: underline;
}

/* Visit Section */
.visit-section {
  background: var(--white);
}

.visit-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.visit-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.visit-card h3 {
  font-family: 'Special Elite', cursive;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

/* Screen reader only - accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

address {
  font-style: normal;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--sand);
  color: var(--slate);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.address {
  color: var(--charcoal);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.phone {
  font-family: 'Special Elite', cursive;
  color: var(--teal);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
}

.directions {
  color: var(--teal);
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: block;
  background: var(--teal);
  color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  font-family: 'Special Elite', cursive;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.social-link:hover {
  background: var(--teal-dark);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-logo p {
  font-family: 'Special Elite', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

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

.footer-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.footer-info a {
  color: var(--teal);
  font-family: 'Special Elite', cursive;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.7);
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--teal);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
  .logo-img {
    width: 65px;
    height: 65px;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-text span {
    font-size: 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
  }

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

  .treats-grid-three {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .treat-card-three {
    max-width: 220px;
  }

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

  .events-image {
    min-height: 300px;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo-img {
    width: 55px;
    height: 55px;
  }

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

  .logo-text span {
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

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

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

  .hero {
    padding-top: 90px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .treats-grid-three {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treat-card-three {
    max-width: 250px;
    aspect-ratio: 1;
  }

  .events-text {
    padding: 2.5rem;
  }

  .events-text h2 {
    font-size: 2rem;
  }

  .phone-number {
    font-size: 1.5rem;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-text span {
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .events-text h2 {
    font-size: 1.7rem;
  }

  .phone-number {
    font-size: 1.3rem;
  }
}
