@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
html {
    font-size: 14px;
}

body {
    background: black;
    color: white;
    font-family: "Prata", serif;
    margin: 0;
    padding: 0;
}

.logos-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
    display: flex;
    gap: 60px;
    justify-content: space-around;
    box-sizing: border-box;
}

.logos-container > div {
    flex: 1;
}

.logos-container img {
    width: 100%;
}

.shop-container {
    max-width: 600px;
    margin: 40px auto 30px;
    text-align: center;
    padding: 0 2rem;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.youtube-container {
    box-sizing: border-box;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
}

.youtube-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

video {
    width: 100%;
    max-width: 1400px;
    height: auto;
}

/* New Single Section Styles */
.single-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.single-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.album-art {
    flex-shrink: 0;
}

.album-art img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.album-art img:hover {
    transform: scale(1.05);
}

.single-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 250px;
}

.single-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.single-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: "Prata", serif;
    font-size: 1.1rem;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.single-btn.primary {
    background: #c88277;
    color: black;
    border-color: #dea293;
}

.single-btn.primary:hover {
    background: #c99c97;
    color: white;
    border-color: #c99c97;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 156, 151, 0.3);
}

.single-btn.secondary {
    background: transparent;
    color: #dea293;
    border-color: #dea293;
}

.single-btn.large {
    font-size: 1.5rem;
}

.single-btn.secondary:hover {
    background: #c99c97;
    color: white;
    border-color: #c99c97;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 156, 151, 0.3);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input[type="email"] {
    padding: 0.25rem 0.75rem;
    font-family: "Prata", serif;
    font-size: 16px;
    border: none;
    width: 100%;
    opacity: 50%;
    transition: all 0.25s;
}

input[type="email"].focused {
    opacity: 100%;
}

label {
    font-size: 0.8rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

input[type="checkbox"] {
    margin-top: 0.3rem;
}

button {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: #c99c97;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Prata", serif;
    background: #c88277;
    color: black;
    border-color: #dea293;
    text-transform: uppercase;
}

button:hover {
    background: #d99c97;
}

a {
    color: #c99c97;
    text-decoration: underline;
}

a:hover {
    color: #d99c97;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group input[type="email"] {
    flex: 1;
}

.input-group button {
    white-space: nowrap;
}

.continue-link {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
    text-align: center;
}

.continue-link a {
    text-decoration: none;
    font-weight: bold;
}

.social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    font-size: 24px;
}

.social-list li {
    margin: 0 5px;
}

.social-list i {
    transition: all 0.25s;
}

.social-list i:hover {
    scale: 120%;
    color: white;
}

.thanks-container {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

footer {
    margin: 30px 0;
    font-size: 0.9rem;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    line-height: 1.4;
}

footer a {
    color: #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .single-content {
        flex-direction: column;
        gap: 2rem;
    }

    .album-art img {
        width: 250px;
        height: 250px;
    }

    .single-info h2 {
        font-size: 2rem;
    }

    .single-info {
        gap: 1.5rem;
    }

    .single-btn.large {
        font-size: 1.1rem;
    }
}

@media (max-width: 460px) {
    .video-container {
        padding: 2rem 0;
    }

    .single-section {
        padding: 2rem 1rem;
    }

    .album-art img {
        width: 200px;
        height: 200px;
    }

    .single-info h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .single-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
