body {
    margin: 0;
    background: #0d0d0d;
    color: #d4a037;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px 120px;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        padding: 40px 15px 80px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 30px 12px 60px;
    }
}

.container {
    max-width: 650px;
    width: 100%;
    margin-top: 20px;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

.logo {
    width: 260px;
    margin-bottom: 45px;
    filter: drop-shadow(0 0 5px #000);
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 220px;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 180px;
        margin-bottom: 30px;
    }
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: #d4a037;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
        margin: 0 0 25px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        line-height: 1.3;
        margin: 0 0 20px 0;
    }
}

.subtitle {
    color: #e8e8e8;
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

.divider {
    width: 120px;
    height: 2px;
    background: #d4a037;
    margin: 35px auto;
    border-radius: 2px;
}

.address {
    color: #ccc;
    font-size: 17px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .address {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

.contact {
    margin-top: 15px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item {
    color: #d4a037;
    font-size: 17px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    word-break: break-word;
}

@media (max-width: 480px) {
    .contact-item {
        font-size: 15px;
    }
}

.contact-item:hover {
    color: #f1c76c;
    text-decoration: underline;
}

.tagline {
    font-size: 16px;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.social {
    margin-bottom: 40px;
}

.insta-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.insta-icon:hover {
    transform: scale(1.15);
}

.map-container {
    border: 2px solid #d4a037;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

@media (max-width: 480px) {
    .map-container {
        border-radius: 8px;
        border-width: 1.5px;
    }
}

iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
}

@media (max-width: 480px) {
    iframe {
        height: 280px;
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}
