* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #92A8D1;
  --primary-dark: #5D7198;
  --white: #ffffff;
  --light: #f6f8fc;
  --text: #2e3440;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #eef3fb 0%, #ffffff 100%);
  color: var(--text);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--white);
  letter-spacing: 2px;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.menu a:hover {
  opacity: 0.7;
}

.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?q=80&w=1600&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
  margin: 5px;
}

.btn:hover {
  background: white;
  color: var(--primary-dark);
}

section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #667085;
  line-height: 1.8;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.count-card {
  background: rgba(255,255,255,0.6);
  padding: 35px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.count-card h3 {
  font-size: 52px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.story {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
  align-items: center;
}

.story img {
  width: 100%;
  border-radius: 35px;
}

.story-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.story-content p {
  line-height: 2;
  color: #667085;
  margin-bottom: 18px;
}

.groomsmen-grid,
.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 30px;
}

.groomsmen-card,
.gift-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.groomsmen-card:hover,
.gift-card:hover {
  transform: translateY(-10px);
}

.groomsmen-card img,
.gift-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.groomsmen-content,
.gift-content {
  padding: 25px;
  text-align: center;
}

.groomsmen-content h4,
.gift-content h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.price {
  font-size: 28px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.gift-btn {
  width: 100%;
  border: none;
  background: var(--primary);
  color: white;
  padding: 15px;
  border-radius: 16px;
  cursor: pointer;
}

footer {
  padding: 50px 20px;
  text-align: center;
  background: var(--primary-dark);
  color: white;
}

footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

@media(max-width: 900px){

  .story{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:58px;
  }

  .countdown{
    grid-template-columns:repeat(2,1fr);
  }

  .menu{
    display:none;
  }

}

@media(max-width:600px){

  .hero h1{
    font-size:46px;
  }

  .section-title h2{
    font-size:42px;
  }

  .countdown{
    grid-template-columns:1fr;
  }

}
.padrinhos-carousel{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:10px 5px 20px;
}

.padrinhos-carousel::-webkit-scrollbar{
    height:6px;
}

.padrinhos-carousel::-webkit-scrollbar-thumb{
    background:#92A8D1;
    border-radius:20px;
}

.padrinhos-carousel .groomsmen-card{
    min-width:260px;
    max-width:260px;
    flex-shrink:0;

    background:white;
    border-radius:25px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    transition:.3s;
}

.padrinhos-carousel .groomsmen-card:hover{
    transform:translateY(-8px);
}

.padrinhos-carousel .groomsmen-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.padrinhos-carousel .groomsmen-content{
    padding:20px;
    text-align:center;
}

.padrinhos-carousel .groomsmen-content h4{
    font-size:22px;
    margin-bottom:10px;
    color:#5D7198;
}

.padrinhos-carousel .groomsmen-content p{
    font-size:14px;
    line-height:1.7;
    color:#667085;
}