/* ==========================================================================
   Gramado Wine - Landing Page Simples
   ========================================================================== */

/* Variables */
:root {
  --primary: #742429; /* Pantone P 50-16C */
  --marsala: #64242e;
  --cabernet: #742429;
  --marrom: #724322;
  --preto: #2d2a29;
  --areia: #f1cc98;
  --off-white: #f8f7f2;
  --dourado: #d4a574;

  --font-primary: "Oranienbaum", serif;
  --font-secondary: "Inter", sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--marrom) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  height: 100px;
  width: auto;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--marsala) 50%,
    var(--marrom) 100%
  );
  text-align: center;
  position: relative;
  padding: 40px 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(212, 165, 116, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(212, 165, 116, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  animation: fadeInUp 1s ease 0.5s both;
}

.logo-container {
  margin-bottom: 3rem;
}

.main-logo {
  height: 200px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--areia);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(248, 247, 242, 0.9);
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-item {
  margin-bottom: 1rem;
  padding: 15px 25px;
  background: rgba(248, 247, 242, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  display: inline-block;
  margin: 0 10px 1rem 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--dourado);
  transform: translateY(-2px);
}

.contact-item span {
  color: var(--areia);
  font-size: 1rem;
  font-weight: 500;
}

.footer-text {
  margin-top: 2rem;
}

.footer-text p {
  color: rgba(248, 247, 242, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 20px 15px;
  }

  .main-logo {
    height: 150px;
  }

  .contact-item {
    display: block;
    margin: 0 0 1rem 0;
    width: 100%;
    max-width: 300px;
  }

  .hero-description {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .main-logo {
    height: 120px;
  }

  .hero-title {
    margin-bottom: 1.5rem;
  }

  .hero-description {
    margin-bottom: 2.5rem;
  }

  .contact-item {
    padding: 12px 20px;
  }
}
