/* --- Contact Page Specific Styles --- */

/* Container for the Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Dark Box Styling */
.contact-info {
    padding: 2rem;
    background-color: #1a1a1a; /* var(--dark) */
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #d4af37; /* var(--secondary) */
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

/* --- NEW LAYOUT: Stacked Items --- */

/* Wrapper for each chunk of info (Address, Phone, etc) */
.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column; /* Forces Top-to-Bottom layout */
    align-items: flex-start;
    gap: 8px; /* Space between Label and Value */
}

/* The Label Row: Icon + "Address:" */
.info-label {
    color: #d4af37; /* Gold color for label */
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center; /* Vertically center the icon with the label text */
    gap: 10px;
}

/* Icon inside the label */
.info-label i {
    width: 20px; /* Fixed width alignment */
    text-align: center;
    display: flex;       /* Use flex to center SVG inside the i tag */
    align-items: center;
    justify-content: center;
}

/* The Value Row: The actual address/number */
.info-value {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 30px; /* Indent to align under the text part of the label */
    color: #e0e0e0;
    display: flex; /* Flex container for the value content */
    align-items: center; /* Vertically center everything in the value row */
    flex-wrap: wrap; /* Allow wrapping if absolutely necessary on tiny screens */
}

/* Links inside the value (Address, Email) */
.info-value a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex; /* Locks text and icon together */
    align-items: center;  /* Vertically centers icon with text */
    gap: 8px;             /* Space between text and icon */
}

.info-value a:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Copy Button Styling */
.copy-btn-style {
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-left: 10px;
    display: inline-flex; /* Aligns button icon properly */
    align-items: center;
    transition: color 0.3s ease;
}

.copy-btn-style:hover {
    color: white;
}

/* Map Container */
.map-container {
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.responsive-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; 
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    #contact-page {
        padding-top: 100px; 
    }

    .contact-info {
        padding: 1.5rem;
    }

    .info-value {
        padding-left: 0; /* Remove indentation on mobile for more space */
        font-size: 1rem;
    }
    
    .info-label {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
}