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

body {
  font-family: 'Lora', serif;
  background-color: #f9f0e4;
  color: #2e2e2e;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Great Vibes', cursive;
  color: #8a5c3d;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 0px 0 40px 0;
}

footer .container {  
  margin: auto;
  padding: 5px 0;
}

header {
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header h1 {
  text-align: center;
  font-size: 3em;
  padding: 0 0 20px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding-bottom: 20px;
}

nav a {
  color: #a67c52;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  font-size: 1.1em;
}

.hero {
  background: url('img/hero3.jpg') center/cover no-repeat;
  color: white;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  background-color: rgba(0,0,0,0.5);
  padding: 50px;
  border-radius: 12px;
  max-width: 700px;
}

.hero h2 {
  font-size: 3.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.4em;
  margin: 15px 0;
}

.cta-button {
  padding: 14px 35px;
  background: #a67c52;
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #7a5432;
}

.offer h2, .gallery h2, .contact h2, .cennik h2, .polecamy h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 3.2em;
}

.offer h4, .gallery h4, .contact h4, .cennik h4, .polecamy h4 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.4em;
}

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

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  padding: 30px;
  width: 300px;
  transition: transform 0.3s;
}

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

.gallery .images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

.contact-info {
  background: #f9f4ef;
  border: 2px solid #a67c52;
  border-radius: 12px;
  padding: 30px 40px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(166,124,82,0.25);
  font-family: 'Lora', serif;
  font-size: 1.2em;
  color: #5a4129;
  text-align: center;
}

.contact-item {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.contact-item .icon {
  font-size: 1.8em;
}

.contact-item a {
  color: #8a5c3d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #5a4129;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-top: 1px solid #ddd;
  color: #666;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-fast {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s ease-in;
}

.fade-in-fast.visible {
  opacity: 1;
  transform: scale(1);
}


.logo-container {
  text-align: center;
  padding: 0px 0 0px;
}
.logo {
  height: 110px;
  object-fit: contain;
}

.cta-button.pulse {
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-highlight {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 10px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.offer-intro {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #444;
  margin: 0 auto 40px;
  max-width: 800px;
  text-align: center;
  line-height: 1.6;
}

.offer-intro ul {
  list-style-type: disc;
  margin: 15px auto 0;
  padding-left: 20px;
  text-align: left;
  display: inline-block;
}
.wedding-form {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 20px;
}

.wedding-form .form-wrapper {
  width: 100%;
  max-width: 600px;
  /*background: linear-gradient(to bottom, #fffefb, #f7f4ef);*/
  background-color: #f5f1eb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wedding-form label {
  font-weight: 500;
  font-family: 'Lora', serif;
  color: #333;
  display: flex;
  flex-direction: column;
}

.wedding-form input,
.wedding-form textarea {
  margin-top: 6px;
  padding: 12px 14px;
  font-size: 1em;
  font-family: 'Lora', serif;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border 0.2s ease-in-out;
}

.wedding-form input:focus,
.wedding-form textarea:focus {
  border-color: #999;
  outline: none;
}

.wedding-form textarea {
  resize: vertical;
  min-height: 90px;
}

.wedding-form button {
  padding: 14px 20px;
  font-size: 1.1em;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Lora', serif;
  transition: background-color 0.3s ease;
}

.wedding-form button:hover {
  background-color: #444;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #f9f9f9;
  margin: 5% auto;
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #444;
  text-align: center;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.modal-content textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-content button {
  background-color: #8c1515; /* Kolor z nagłówków */
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  width: 100%;
}

.modal-content button:hover {
  background-color: #a92020;
}

.modal .close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  color: #666;
  cursor: pointer;
}

/* Podstawowy układ: logo + h1 + nav */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* Standardowe style menu */
nav ul {
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE (np. do 768px) */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
  }
  h1 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 2rem;
    text-align: center;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  nav ul li {
    width: 100%;
    text-align: center;
  }
}
