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

body, html {
    height: 100%;
    font-family: "EB Garamond", serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* ← IMPORTANT */
    align-items: center;
    min-height: 100vh;             /* ← NO height */
    background-color: white;
    padding-top: 40px;             /* espai superior pel logo */
	padding-bottom: 70px;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.central-text {
    text-align: center;
	font-family: 'Open Sans';
    font-size: 24px;
    color: #333;
}
.container p {
    text-align: center;
	font-family: "EB Garamond", serif;
    font-size: 16px;
    color: #666;
}

.icones {
  fill: #444;
}

.icons {
    display: flex;
    gap: 20px;
}


.eb-garamond-csa {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  color: #444;
}

.fine-sparkling-wine {
    font-family: "Pinyon Script", cursive;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #444;
    margin-top: 18px;
}

/* video */
.enllaç {
        color: black;
        text-decoration: none;
    }
    .enllaç:hover {
        color: grey;
    }

	.video-wrap {
		max-width: 1170px;
		width: 100%;
		margin: 25px auto 25px;
		aspect-ratio: 16 / 9;
	}

	@media (max-width: 768px) {
		.video-wrap {
			width: calc(100% - 30px); /* 15px + 15px */
		}
	}
    .video-wrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }