/* Minimalist Styles for PetrolClub Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #00997d;
  --primary-glow: rgba(0, 153, 125, 0.25);
  --primary-hover: #00b896;
  --bg-dark: #050706;
  --bg-card: rgba(15, 20, 18, 0.6);
  --border-color: rgba(0, 153, 125, 0.12);
  --text-primary: #ffffff;
  --text-secondary: #8da298;
  --text-muted: #536960;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 153, 125, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Background Soft Glows */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(5, 7, 6, 0) 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

.glow-top {
  top: -150px;
  right: -100px;
}

.glow-bottom {
  bottom: -150px;
  left: -100px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 7, 6, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.nav-btn {
  background: transparent;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-btn:hover {
  background: rgba(0, 153, 125, 0.1);
  border-color: var(--primary);
  color: var(--primary-hover);
}

/* Sections General */
section {
  padding: 8rem 2rem 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 75vh;
  justify-content: center;
  padding-top: 10rem;
}

.hero-tag {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  max-width: 800px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, #00ffd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
}

/* App Download Badges */
.download-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.badge-btn:hover {
  border-color: var(--primary);
  background: rgba(0, 153, 125, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 153, 125, 0.1);
}

.badge-btn svg {
  fill: var(--text-secondary);
  transition: var(--transition);
}

.badge-btn:hover svg {
  fill: var(--primary-hover);
}

.badge-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.badge-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* Smartphone Showcase Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Custom CSS Phone Frame */
.phone-frame {
  width: 290px;
  height: 600px;
  background: #000;
  border: 10px solid #161a18;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 153, 125, 0.08);
  border-color: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.phone-frame:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 153, 125, 0.25);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 153, 125, 0.15);
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #0e1110;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Phone Notch / Dynamic Island Detail */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #000;
  border-radius: 10px;
  z-index: 10;
}

.showcase-desc {
  margin-top: 2rem;
  text-align: center;
  max-width: 320px;
}

.showcase-tag {
  color: var(--primary-hover);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.showcase-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Minimalist Social Section */
.social-section {
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.social-link {
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  transform: translateY(-3px);
}

/* Footer */
footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
}

/* Reveal on Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 800px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* Cookiebot Dialog Custom Overrides to make it smaller & fit PetrolClub theme */
#CybotCookiebotDialog {
  background-color: #0b0e0d !important;
  border: 1px solid rgba(0, 153, 125, 0.25) !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 153, 125, 0.1) !important;
  padding: 1.25rem !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

#CybotCookiebotDialogBodyContentTitle {
  font-family: 'Outfit', sans-serif !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
}

#CybotCookiebotDialogBodyContentText, 
#CybotCookiebotDialog * {
  color: #8da298 !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
}

.CybotCookiebotDialogBodyLevelButton {
  border-radius: 8px !important;
  border-color: rgba(0, 153, 125, 0.15) !important;
  background-color: rgba(255, 255, 255, 0.02) !important;
}

#CybotCookiebotDialogFooter {
  background-color: transparent !important;
  padding: 0.75rem 0 0 0 !important;
  border-top: 1px solid rgba(0, 153, 125, 0.1) !important;
  margin-top: 1rem !important;
}

#CybotCookiebotDialogBodyButtonAccept,
#CybotCookiebotDialogBodyButtonDecline,
#CybotCookiebotDialogBodyButtonAcceptSelected {
  background-color: #00997d !important;
  border: 1px solid #00997d !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

#CybotCookiebotDialogBodyButtonAccept:hover,
#CybotCookiebotDialogBodyButtonDecline:hover,
#CybotCookiebotDialogBodyButtonAcceptSelected:hover {
  background-color: #00b896 !important;
  border-color: #00b896 !important;
  box-shadow: 0 0 10px rgba(0, 184, 150, 0.3) !important;
}

