/* Paleta de Cores:
   - Primary Pink/Rose (Nadia Irina Link): #F7CAC9
   - New Accent Red (Major Elements): #C61455
   - Dark Text: #333333
   - Background Light: #FFFFFF
*/

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

body {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
header {
    background-color: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NOVO ESTILO PARA LOGÓTIPO EM IMAGEM (Tamanho Aumentado) */
.logo-img {
    height: 100px; 
    width: auto;
    display: block;
    transition: height 0.3s;
}

/* Cor dos links da navegação (vermelho) */
nav a {
    color: #C61455; /* NOVO VERMELHO: C61455 */
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #9C1044; /* Vermelho um pouco mais escuro no hover */
}

/* Cor dos ícones sociais (vermelho) */
.social-links a {
    color: #C61455; /* NOVO VERMELHO: C61455 */
    font-size: 1.5em;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #9C1044; /* Vermelho um pouco mais escuro no hover */
}

/* Hero Section */
#hero {
    /* MUDAR IMAGEM AQUI: Substitua 'nail_designer_hero.jpg' pela sua imagem principal */
    background: url('fundo.pdf') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Cor do título principal (vermelho) */
#hero h2 {
    font-size: 3em;
    color: #C61455; /* NOVO VERMELHO: C61455 */
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Estilo do botão (vermelho) */
.btn {
    display: inline-block;
    background-color: #C61455; /* NOVO VERMELHO: C61455 */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #9C1044; /* Vermelho um pouco mais escuro no hover (remove o bege) */
}

/* General Section Styling */
section {
    padding: 80px 0;
    text-align: center;
}

section:nth-child(even) {
    background-color: #F9F9F9;
}

/* Cor dos títulos de secção H3 (vermelho) */
section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #C61455; /* NOVO VERMELHO: C61455 */
}

/* About Section - CENTRADA */
#about .content {
    display: flex;
    flex-direction: column; /* Coloca o texto e a imagem em coluna */
    align-items: center; /* Centra horizontalmente */
    text-align: center; /* Centra o texto */
    gap: 40px;
}

#about .text {
    max-width: 800px; /* Limita a largura do bloco de texto para melhor leitura */
    text-align: center;
}

#about .image {
    max-width: 400px;
}

#about .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Box-shadow no hover (vermelho transparente) */
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(198, 20, 85, 0.5); /* NOVO VERMELHO: C61455 com transparência */
}

/* Cor dos títulos dos serviços H4 (vermelho) */
.service-item h4 {
    color: #C61455; /* NOVO VERMELHO: C61455 */
    margin-bottom: 10px;
}

/* NOVA SECÇÃO: GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* FIM DA SECÇÃO GALLERY */

/* Contact Section (Formulário) - OTIMIZAÇÃO AQUI */
#contact form {
    max-width: 700px; /* AUMENTADO para dar mais espaço */
    margin: 40px auto;
    padding: 40px; /* AUMENTADO para mais espaço interior */
    border: 2px solid #C61455; /* Borda mais grossa em Vermelho */
    border-radius: 10px; /* Borda mais arredondada */
    text-align: left;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* Sombra suave para destacar */
}

.form-group {
    margin-bottom: 25px; /* AUMENTADO o espaço entre campos */
}

.form-group label {
    display: block;
    margin-bottom: 8px; /* AUMENTADO o espaço entre label e input */
    font-weight: bold;
    color: #C61455; /* Cor da label em Vermelho */
    font-size: 1.1em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px; /* AUMENTADO o padding interno */
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #C61455; /* Borda Vermelha no foco */
    box-shadow: 0 0 5px rgba(198, 20, 85, 0.5);
    outline: none; /* Remove a borda padrão do browser */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px; /* AUMENTADO a altura mínima da área de texto */
}

.error-message {
    color: #C61455; /* Cor do erro em Vermelho */
    font-size: 1em;
    margin-top: 5px;
}

/* O botão 'Enviar Pedido' já usa a classe .btn (que é vermelha) */

.form-status {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

.contact-info {
    margin-top: 40px;
    font-size: 1.1em;
    text-align: center;
}

.contact-info p {
    margin: 10px 0;
}

/* Footer (Fundo Vermelho, Letras Brancas) */
footer {
    background-color: #C61455; /* NOVO VERMELHO: C61455 */
    color: white; /* Letras em branco */
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Estilo para links dentro do footer */
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    color: white; /* Mantém branco */
    text-decoration: underline;
}

/* Letras "Nadia Irina" em rosa (F7CAC9) */
.designer-name {
    color: #F7CAC9; /* ROSA SUAVE: F7CAC9 */
    transition: color 0.3s;
}
.designer-name:hover {
    color: #D4A373; /* Bege/Dourado no hover para contraste */
}

/* Animações Suaves (Scroll) */
.scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries para Design Responsivo (Tablet e Telemóvel) */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo-img {
        height: 40px; 
    }

    #hero {
        height: 60vh;
    }

    #hero h2 {
        font-size: 2em;
    }
    
    /* Ajuste o padding do formulário em ecrãs pequenos */
    #contact form {
        padding: 30px; 
    }
    
    /* ... (outras regras de media query) ... */
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px; 
    }
    
    /* ... (outras regras de media query) ... */
}
